gistoolkit.server.mapclient
Interface Command

All Known Implementing Classes:
BasicCommand

public interface Command

Interface for classes to do something with the user interface.


Method Summary
 void drawexecute(Drawer inDrawer)
          Called when the drawer completes
 void execute()
          Called when the command is executed.
 java.lang.String getCommandName()
          Used to retrieve the name of this command.
 void setClient(Client inClient)
          Called before the execute command.
 

Method Detail

getCommandName

public java.lang.String getCommandName()
Used to retrieve the name of this command.


setClient

public void setClient(Client inClient)
Called before the execute command.


execute

public void execute()
Called when the command is executed.


drawexecute

public void drawexecute(Drawer inDrawer)
Called when the drawer completes