/*

	Interface CommandExecutor
	by Richard Unger, March 1998
	
	The idea here is for everyone to execute commands accoring to the same fashion
	each object implements the CommandExecutor interface and notifies the 
	CommandParser about commands it wants to receive. When such commands are
	encountered by the CommandParser they are sent to registered objects by the
	calls implemented in the CommandExecutor interface.
	
*/





public interface CommandExecutor{

	public String performCommand(String command);


}