|
CommandAPI 11.1.0
An API for the command UI introduced in Minecraft 1.13
|
A normal command executor for a CommandSender. More...
Inheritance diagram for dev.jorel.commandapi.executors.CommandExecutor:Public Member Functions | |
| void | run (CommandSender sender, CommandArguments args) throws WrapperCommandSyntaxException |
| The code to run when this command is performed. More... | |
| default void | run (ExecutionInfo< CommandSender, BukkitCommandSender<? extends CommandSender > > info) throws WrapperCommandSyntaxException |
| The code to run when this command is performed. More... | |
| default ExecutorType | getType () |
| Returns the type of the sender of the current executor. More... | |
| default int | executeWith (ExecutionInfo< CommandSender, WrapperType > info) throws WrapperCommandSyntaxException |
| Executes the command executor with the provided command sender and the provided arguments. More... | |
| void | run (ExecutionInfo< CommandSender, WrapperType > info) throws WrapperCommandSyntaxException |
| Executes the command. More... | |
A normal command executor for a CommandSender.
|
inherited |
Executes the command executor with the provided command sender and the provided arguments.
| info | The ExecutionInfo for this command |
| WrapperCommandSyntaxException | if an error occurs during the execution of this command |
| default ExecutorType dev.jorel.commandapi.executors.CommandExecutor.getType | ( | ) |
Returns the type of the sender of the current executor.
| void dev.jorel.commandapi.executors.CommandExecutor.run | ( | CommandSender | sender, |
| CommandArguments | args | ||
| ) | throws WrapperCommandSyntaxException |
The code to run when this command is performed.
| sender | The sender of this command (a player, the console etc.) |
| args | The arguments given to this command. |
| default void dev.jorel.commandapi.executors.CommandExecutor.run | ( | ExecutionInfo< CommandSender, BukkitCommandSender<? extends CommandSender > > | info | ) | throws WrapperCommandSyntaxException |
The code to run when this command is performed.
| info | The ExecutionInfo for this command |
|
inherited |
Executes the command.
| info | The ExecutionInfo for this command |
| WrapperCommandSyntaxException | if an error occurs during the execution of this command |