Uses of Class
slogo.jelan.instructions.Instruction

Packages that use Instruction
slogo.jelan.instructions   
 

Uses of Instruction in slogo.jelan.instructions
 

Subclasses of Instruction in slogo.jelan.instructions
 class Assignment
          An assignment instruction assigns an expression to a variable, updating the global state to reflect the assignment.
 class Print
          The Print instruction prints an expression.
 class Repeat
          An AST (abstract syntax tree) for a SLogo REPEAT instruction.
 class StrictInstructionList
          A list of instructions that doesn't include a function definition.
 

Methods in slogo.jelan.instructions that return types with arguments of type Instruction
 java.util.Iterator<Instruction> StrictInstructionList.iterator()
          Return an iterator for accessing all the instructions.
 

Methods in slogo.jelan.instructions with parameters of type Instruction
 void StrictInstructionList.add(Instruction i)
          Add an instruction to this list (FIFO order for execution).