Interface ICommandServiceData
-
- All Known Implementing Classes:
BaseCommandContext
public interface ICommandServiceData
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommandService
getCommandService()
IBaseCommandData
getDataForCommand(ICommand command)
CommandState
getLastCommandState()
Get the command state for the last command being executed.void
setLastCommandState(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()
-
-