Package VASSAL.command

Provides classes that implement the "Command" design pattern.

See:
          Description

Interface Summary
CommandEncoder Translates a Command to and from a string Although Commands can be linked into compound commands, each CommandEncoder need only handle single (not compound) commands
Logger  
 

Class Summary
AddPiece This Command adds a GamePiece to a game.
ChangePiece This Command changes the state of a GamePiece.
Command Command is an abstract class that does something.
NullCommand  
RemovePiece This Command removed a GamePiece from a game.
TrackPiece This class makes it more convenient to create a ChangePiece command.
 

Package VASSAL.command Description

Provides classes that implement the "Command" design pattern.

See Also:
Command