-
- 所有已知实现类:
AbstractCommand
,BukkitCommand
,BukkitCommandMethodHandle
,BukkitExecutorCommand
,MXBukkitLibCommandsExecutor
,SharedCommandMethodHandle
,SharedCommands
@ProhibitBean public interface IExecutor
-
-
方法概要
修饰符和类型 方法 说明 default boolean
command(@NotNull ICommandSender sender, @NotNull ICommand command, @NotNull String label, @NotNull SafeList<String> args)
boolean
command(@NotNull ICommandSender sender, @NotNull ICommand command, @NotNull String label, @NotNull SafeList<String> args, @NotNull List<String> full_path)
default boolean
command(@NotNull ICommandSender sender, @NotNull ICommand command, @NotNull String label, @NotNull String[] args)
@Nullable List<String>
tabComplete(@NotNull ICommandSender sender, @NotNull ICommand command, @NotNull String alias, @NotNull SafeList<String> args)
default @Nullable List<String>
tabComplete(@NotNull ICommandSender sender, @NotNull ICommand command, @NotNull String alias, @NotNull String[] args)
-
-
-
方法详细资料
-
tabComplete
@Nullable default @Nullable List<String> tabComplete(@NotNull @NotNull ICommandSender sender, @NotNull @NotNull ICommand command, @NotNull @NotNull String alias, @NotNull @NotNull String[] args)
-
tabComplete
@Nullable @Nullable List<String> tabComplete(@NotNull @NotNull ICommandSender sender, @NotNull @NotNull ICommand command, @NotNull @NotNull String alias, @NotNull @NotNull SafeList<String> args)
-
command
default boolean command(@NotNull @NotNull ICommandSender sender, @NotNull @NotNull ICommand command, @NotNull @NotNull String label, @NotNull @NotNull String[] args) throws CommandException
- 抛出:
CommandException
-
command
default boolean command(@NotNull @NotNull ICommandSender sender, @NotNull @NotNull ICommand command, @NotNull @NotNull String label, @NotNull @NotNull SafeList<String> args) throws CommandException
- 抛出:
CommandException
-
command
boolean command(@NotNull @NotNull ICommandSender sender, @NotNull @NotNull ICommand command, @NotNull @NotNull String label, @NotNull @NotNull SafeList<String> args, @NotNull @NotNull List<String> full_path) throws CommandException
- 抛出:
CommandException
-
-