Interface TurtleInterpreter
-
- All Known Implementing Classes:
ImageTurtleInterpreter
public interface TurtleInterpreter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinterpretClear(ClearCommand clearDommand)voidinterpretFill(FillCommand fillCommand)voidinterpretMove(MoveCommand moveCommand)voidinterpretPenColor(PenColorCommand penColorCommand)voidinterpretPenSize(PenSizeCommand size)voidinterpretPenState(PenStateCommand penStateCommand)voidinterpretSetHeading(SetHeadingCommand heading)voidinterpretSetPosition(SetPositionCommand setxy)voidinterpretTurn(TurnCommand turnCommand)voidinterpretWriteText(WriteTextCommand writeTextCommand)
-
-
-
Method Detail
-
interpretClear
void interpretClear(ClearCommand clearDommand)
-
interpretMove
void interpretMove(MoveCommand moveCommand)
-
interpretPenColor
void interpretPenColor(PenColorCommand penColorCommand)
-
interpretPenState
void interpretPenState(PenStateCommand penStateCommand)
-
interpretTurn
void interpretTurn(TurnCommand turnCommand)
-
interpretPenSize
void interpretPenSize(PenSizeCommand size)
-
interpretSetPosition
void interpretSetPosition(SetPositionCommand setxy)
-
interpretSetHeading
void interpretSetHeading(SetHeadingCommand heading)
-
interpretFill
void interpretFill(FillCommand fillCommand)
-
interpretWriteText
void interpretWriteText(WriteTextCommand writeTextCommand)
-
-