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 DisplayInterface
Run an action without a target.protected DisplayInterface
Run the action command to a target.abstract CommType
Methods inherited from class TargetCommand
getTarget, run
Methods 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:TargetCommand
Run the action command to a target.- Specified by:
actionTo
in 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:TargetCommand
Run an action without a target.- Specified by:
action
in 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
-