Package commandManagers
Class CommandManager
java.lang.Object
commandManagers.CommandManager
The CommandManager class is responsible for managing all available commands in the application.
It provides a static method getCommandMap() that returns a HashMap of all commands where the key is
the command name and the value is an instance of the corresponding Command subclass.
-
Constructor Summary
ConstructorsConstructorDescriptionDefault command manager setup.CommandManager
(CommandMode mode, Scanner scanner) Constructor provides choice of commands behavior: ex. -
Method Summary
Modifier and TypeMethodDescriptionvoid
executeCommand
(String[] args) Universe method for command executing.Returns the commandMap HashMap that stores all available commands in the application.
-
Constructor Details
-
CommandManager
public CommandManager()Default command manager setup.- Since:
- 1.0
-
CommandManager
Constructor provides choice of commands behavior: ex. userMode or nonUserMode- Parameters:
mode
- Mode for CommandHandlerscanner
- Commands scanner- Since:
- 2.0
- See Also:
-
-
Method Details
-
getCommandMap
Returns the commandMap HashMap that stores all available commands in the application.- Returns:
- the HashMap of all commands where the key is the command name and the value is an instance of the corresponding Command subclass.
-
executeCommand
Universe method for command executing.
-