autohit.vm
Class VMISet

java.lang.Object
  |
  +--autohit.vm.VMInstruction
        |
        +--autohit.vm.VMISet

public class VMISet
extends VMInstruction

A Virtual Machine instruction. This creates and sets a variable. If the A reference to the variable should be pushed on the scope stack and placed in the VM variable map.

See Also:
VMInstruction, Serialized Form

Field Summary
 java.lang.String name
          Variable name.
 java.lang.String value
          Variable value.
 
Fields inherited from class autohit.vm.VMInstruction
ADD, CRC, EXEC, FOR, GET, HEADER, IF, iv, IVToken, JUMP, NOP, nToken, NV, RSCOPE, SCOPE, SEEK, SET, VERIFY, WAIT, WHILE
 
Constructor Summary
VMISet()
          Default constructor.
 
Method Summary
 java.lang.String toString()
          Dump this Instruction.
 
Methods inherited from class autohit.vm.VMInstruction
orIV
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

name

public java.lang.String name
Variable name.

value

public java.lang.String value
Variable value.
Constructor Detail

VMISet

public VMISet()
Default constructor.
Method Detail

toString

public java.lang.String toString()
Dump this Instruction. Mostly for debugging.
Returns:
a String containing the dump.
Overrides:
toString in class VMInstruction