Package de.marcely.bedwars.api.command
Class CommandHandler.Silent
java.lang.Object
de.marcely.bedwars.api.command.CommandHandler.Silent
- All Implemented Interfaces:
CommandHandler
- Enclosing interface:
CommandHandler
The default command handler that effectively does nothing
-
Nested Class Summary
Nested classes/interfaces inherited from interface de.marcely.bedwars.api.command.CommandHandler
CommandHandler.Silent -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionReturns the plugin that created this handleronAutocomplete(CommandSender sender, String[] args) Gets called whenever someone autocompletes (presses tab) on the commandvoidonFire(CommandSender sender, String fullUsage, String[] args) Gets called whenever someone executes the commandvoidonRegister(SubCommand cmd) 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, waitMethods inherited from interface de.marcely.bedwars.api.command.CommandHandler
getBukkitLabel, getContentAmount, getOverridingUsage
-
Field Details
-
INSTANCE
-
-
Method Details
-
getPlugin
Description copied from interface:CommandHandlerReturns the plugin that created this handler- Specified by:
getPluginin interfaceCommandHandler- Returns:
- The plugin of this handler
-
onRegister
Description copied from interface:CommandHandlerGets called whenever the command is getting added as handler- Specified by:
onRegisterin interfaceCommandHandler- Parameters:
cmd- The command to which the handler has been added to
-
onFire
Description copied from interface:CommandHandlerGets called whenever someone executes the command- Specified by:
onFirein interfaceCommandHandler- 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:CommandHandlerGets called whenever someone autocompletes (presses tab) on the command- Specified by:
onAutocompletein interfaceCommandHandler- 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
-