hades.simulator
Class VhdlSimKernel.NOP

java.lang.Object
  extended byhades.simulator.VhdlSimKernel.NOP
All Implemented Interfaces:
Simulatable
Enclosing class:
VhdlSimKernel

class VhdlSimKernel.NOP
extends java.lang.Object
implements Simulatable

adapter class to provide a "no operation" Simulatable suitable to put as a replacement into our pending event arrays


Constructor Summary
(package private) VhdlSimKernel.NOP()
           
 
Method Summary
 void elaborate(java.lang.Object o)
          elaborate(): This method is called by the simulation engine to initialize the simulation object.
 void evaluate(java.lang.Object o)
          evaluate(): called by the simulation engine on all events that concern this object.
 void message(java.lang.String s)
          message(): print or display an information message
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

VhdlSimKernel.NOP

VhdlSimKernel.NOP()
Method Detail

elaborate

public void elaborate(java.lang.Object o)
Description copied from interface: Simulatable
elaborate(): This method is called by the simulation engine to initialize the simulation object.

Specified by:
elaborate in interface Simulatable
Parameters:
o - an arbitrary argument

evaluate

public void evaluate(java.lang.Object o)
Description copied from interface: Simulatable
evaluate(): called by the simulation engine on all events that concern this object. The object is responsible for updating its internal state and for scheduling all pending output events.

Specified by:
evaluate in interface Simulatable
Parameters:
o - an arbitrary argument

message

public void message(java.lang.String s)
Description copied from interface: Simulatable
message(): print or display an information message

Specified by:
message in interface Simulatable