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
-
Method Summary
Modifier and TypeMethodDescriptionReturns the plugin that created this handleronAutocomplete
(CommandSender sender, String[] args) Gets called whenever someone autocompletes (presses tab) on the commandvoid
onFire
(CommandSender sender, String fullUsage, String[] args) Gets called whenever someone executes the commandvoid
onRegister
(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, wait
Methods inherited from interface de.marcely.bedwars.api.command.CommandHandler
getBukkitLabel, getContentAmount, getOverridingUsage
-
Field Details
-
INSTANCE
-
-
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:
cmd
- The command to which the handler has been added to
-
onFire
Description copied from interface:CommandHandler
Gets called whenever someone executes the command- Specified by:
onFire
in 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:CommandHandler
Gets called whenever someone autocompletes (presses tab) on the command- Specified by:
onAutocomplete
in 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
-