Uses of Class
de.adom.jade.ui.commands.Command

Packages that use Command
de.adom.jade.beings   
de.adom.jade.ui   
de.adom.jade.ui.ascii   
de.adom.jade.ui.commands   
 

Uses of Command in de.adom.jade.beings
 

Methods in de.adom.jade.beings that return Command
 Command Being.getLastUsedCommand()
          Returns the most recent command used by this being.
 

Methods in de.adom.jade.beings with parameters of type Command
protected  boolean Being.executeRepeatedCommand(Command command)
          Executes a command that is executed repetitively.
 void Being.setLastUsedCommand(Command command)
          Stores the most recent command used by this being.
 

Uses of Command in de.adom.jade.ui
 

Methods in de.adom.jade.ui that return Command
abstract  Command UserInterface.getCommand()
          Returns a command from the user interface.
 Command DefaultUserInterface.getCommand()
          Returns a command from the user interface.
 

Methods in de.adom.jade.ui with parameters of type Command
 void KeyboardCommandTarget.commandActivated(Command command)
          Is called when a command has been activated.
 void DefaultUserInterface.addCommand(Command command)
          Adds a command to the command queue.
 

Uses of Command in de.adom.jade.ui.ascii
 

Methods in de.adom.jade.ui.ascii with parameters of type Command
 void AsciiUserInterface.commandActivated(Command command)
          Is called when a command has been activated.
 

Uses of Command in de.adom.jade.ui.commands
 

Subclasses of Command in de.adom.jade.ui.commands
 class RepeatingCommand
          Implements the base class for commands that repeat until some special condition is fulfilled.
 

Fields in de.adom.jade.ui.commands declared as Command
static Command Command.WAIT
          The "wait" command.
static Command Command.N
          The "move north" command.
static Command Command.NE
          The "move north east" command.
static Command Command.E
          The "move east" command.
static Command Command.SE
          The "move south east" command.
static Command Command.S
          The "move south" command.
static Command Command.SW
          The "move south west" command.
static Command Command.W
          The "move west" command.
static Command Command.NW
          The "move north west" command.
static Command Command.ENTER_LOCATION
          Enters a location on the map.
 

Methods in de.adom.jade.ui.commands that return Command
abstract  Command RepeatingCommand.getRepeatingCommand(Being being)
          Determines if the command can be repeated once more for a given being.
static Command Command.getCommand(java.lang.String name)
          Returns the command object for a given logical name.