Package de.marcely.bedwars.api.command
Class CollectionCommandHandler
java.lang.Object
de.marcely.bedwars.api.command.CollectionCommandHandler
- All Implemented Interfaces:
CommandHandler
,CommandHandlerWrappedSender
The default handler of a
CommandsCollection
-
Nested Class Summary
Nested classes/interfaces inherited from interface de.marcely.bedwars.api.command.CommandHandler
CommandHandler.Silent
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the plugin that created this handleronAutocomplete
(CommandSenderWrapper sender, String[] args) Gets called whenever someone autocompletes (presses tab) on the commandvoid
onFire
(CommandSenderWrapper sender, String fullUsage, String[] args) Gets called whenever someone executes the commandvoid
onRegister
(SubCommand collection) Gets called whenever the command is getting added as handlerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface de.marcely.bedwars.api.command.CommandHandler
getBukkitLabel, getOverridingUsage
Methods inherited from interface de.marcely.bedwars.api.command.CommandHandlerWrappedSender
getContentAmount, getContentAmount, onAutocomplete, onFire
-
Constructor Details
-
CollectionCommandHandler
public CollectionCommandHandler()
-
-
Method Details
-
getPlugin
Description copied from interface:CommandHandler
Returns the plugin that created this handler- Specified by:
getPlugin
in interfaceCommandHandler
- Returns:
- The plugin of this handler
-
onRegister
Description copied from interface:CommandHandler
Gets called whenever the command is getting added as handler- Specified by:
onRegister
in interfaceCommandHandler
- Parameters:
collection
- The command to which the handler has been added to
-
onFire
Description copied from interface:CommandHandlerWrappedSender
Gets called whenever someone executes the command- Specified by:
onFire
in interfaceCommandHandlerWrappedSender
- Parameters:
sender
- The person who executed the commandfullUsage
- The full usage, including the label and everythingargs
- Passed arguments to this command
-
onAutocomplete
Description copied from interface:CommandHandlerWrappedSender
Gets called whenever someone autocompletes (presses tab) on the command- Specified by:
onAutocomplete
in interfaceCommandHandlerWrappedSender
- Parameters:
sender
- The person who did the autocompleteargs
- The given arguments- Returns:
- What shall be shown to the player as options. Returning null will display all players
-