Class CommunicationCommand
Object
NormalCommand
TargetCommand
CommunicationCommand
- All Implemented Interfaces:
Command
- Direct Known Subclasses:
AskCommand,SayCommand,ShoutCommand,WhisperCommand
- Author:
- maartenl
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected DisplayInterfaceRun an action without a target.protected DisplayInterfaceRun the action command to a target.abstract CommTypeMethods inherited from class TargetCommand
getTarget, runMethods inherited from class NormalCommand
getAdminService, getChatService, getEventsService, getGuildService, getHelpService, getItemService, getLogService, getPersonService, getRegExpr, parseCommand, parseCommand, setCallback
-
Constructor Details
-
CommunicationCommand
-
-
Method Details
-
getCommType
-
actionTo
protected DisplayInterface actionTo(User aUser, Person aTarget, String verb, String message) throws MudException Description copied from class:TargetCommandRun the action command to a target.- Specified by:
actionToin classTargetCommand- Parameters:
aUser- the one executing the commandaTarget- the target of the commandverb- the verb, usually the first word in the command, for example "cheer".message- the rest of the command, for example "bow to Marvin evilly", will provide "evilly". But "bow to Marvin" will return a null pointer.- Returns:
- something to display
- Throws:
MudException
-
action
Description copied from class:TargetCommandRun an action without a target.- Specified by:
actionin classTargetCommand- Parameters:
aUser- the one executing the commandverb- the verb, usually the first word in the command, for example "bow".command- the rest of the command, for example "bow evilly" would return "evilly". "bow" would return null.- Returns:
- something to display
- Throws:
MudException
-