autohit
Class Scenario

java.lang.Object
  |
  +--autohit.Scenario

public class Scenario
extends java.lang.Object
implements java.io.Serializable

Scenario is the basic class for a scenario. Each represents a test as executed on a single test station.

See Also:
Serialized Form

Field Summary
 java.util.Vector exec
          A vector containing the Scenario executable.
 java.lang.String name
          This scenario's name.
 java.lang.String note
          Associated note.
 
Constructor Summary
Scenario()
          Default Constructor.
 
Method Summary
 void init()
          Initializes a brand-new Scenario().
 java.lang.String toString()
          Dump this SCENARIO.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

exec

public java.util.Vector exec
A vector containing the Scenario executable. Each member-object will be a vmInstruction derived class object.
See Also:
VMInstruction

name

public java.lang.String name
This scenario's name.

note

public java.lang.String note
Associated note.
Constructor Detail

Scenario

public Scenario()
Default Constructor. It will create an empty Sim. Remember! If you are creating a new Sim, but sure to call init().
See Also:
init()
Method Detail

init

public void init()
Initializes a brand-new Scenario().

toString

public java.lang.String toString()
Dump this SCENARIO. I'm putting this in for debugging. It might have some other uses...
Returns:
a String containing the dump.
Overrides:
toString in class java.lang.Object