Interface ICommandServiceData
-
- All Known Implementing Classes:
BaseCommandContext
public interface ICommandServiceData
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommandServicegetCommandService()IBaseCommandDatagetDataForCommand(ICommand command)CommandStategetLastCommandState()Get the command state for the last command being executed.voidsetLastCommandState(CommandState state)Set the command state for the last command being executed in the command service.
-
-
-
Method Detail
-
getCommandService
CommandService getCommandService()
-
getDataForCommand
IBaseCommandData getDataForCommand(ICommand command)
-
setLastCommandState
void setLastCommandState(CommandState state)
Set the command state for the last command being executed in the command service.- Parameters:
state- the last command state.- See Also:
IBaseCommandData.setCommandState(CommandState)
-
getLastCommandState
CommandState getLastCommandState()
Get the command state for the last command being executed. This will be the state of the command service execution.- See Also:
IBaseCommandData.getCommandState()
-
-