Package org.bukkit.command
Interface CommandExecutor
- 
- All Known Subinterfaces:
 Plugin,TabExecutor
- All Known Implementing Classes:
 JavaPlugin,PluginBase
public interface CommandExecutorRepresents a class which contains a single method for executing commands 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanonCommand(CommandSender sender, Command command, String label, String[] args)Executes the given command, returning its success. 
 - 
 
- 
- 
Method Detail
- 
onCommand
boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args)Executes the given command, returning its success.
If false is returned, then the "usage" plugin.yml entry for this command (if defined) will be sent to the player.- Parameters:
 sender- Source of the commandcommand- Command which was executedlabel- Alias of the command which was usedargs- Passed command arguments- Returns:
 - true if a valid command, otherwise false
 
 
 - 
 
 -