类 TabCompleteEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.server.TabCompleteEvent
所有已实现的接口:
Cancellable

public class TabCompleteEvent extends Event implements Cancellable
当一个 CommandSender 尝试补全命令时触发本事件.
请注意由于客户端的更改, 如果命令发起者是玩家, 本事件 将只有在指定了命令参数后触发, 而不是命令本身.建议希望从tab补全列表删除命令的插件 确保客户端没有相关命令的执行权限, 或使用PlayerCommandSendEvent.
  • 构造器详细资料

  • 方法详细资料

    • getSender

      @NotNull public @NotNull CommandSender getSender()
      获取正在补全这个命令的发送者.

      原文:Get the sender completing this command.

      返回:
      CommandSender 实例
    • getBuffer

      @NotNull public @NotNull String getBuffer()
      返回构成这个补全项的命令缓冲区.

      译注: 命令缓冲区是什么? 比如您对命令"/tp no"进行补全,"/tp no"即为这个buffer.

      原文:Return the entire buffer which formed the basis of this completion.

      返回:
      命令缓冲区,即为你输入的内容
    • getCompletions

      @NotNull public @NotNull List<String> getCompletions()
      提供给发送者的补全项的列表. 这个列表是可变的,可以编辑该列表以实现更改补全项.

      原文:The list of completions which will be offered to the sender, in order. This list is mutable and reflects what will be offered.

      返回:
      提供的补全项的列表
    • setCompletions

      public void setCompletions(@NotNull @NotNull List<String> completions)
      设置提供的补全项, 会覆盖已设置的补全项.

      原文:Set the completions offered, overriding any already set.

      参数:
      completions - 新的补全项
    • isCancelled

      public boolean isCancelled()
      从接口复制的说明: Cancellable
      获取这个事件是否被取消.一个被取消的事件不会在服务器里执行,但是仍然会传递事件到其他插件.

      原文:Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins

      指定者:
      isCancelled 在接口中 Cancellable
      返回:
      如果事件已经被取消,则为true
    • setCancelled

      public void setCancelled(boolean cancelled)
      从接口复制的说明: Cancellable
      取消这个事件. 一个被取消的事件不会在 服务器里执行,但是仍然会传递事件到其他插件.

      原文:Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.

      指定者:
      setCancelled 在接口中 Cancellable
      参数:
      cancelled - 如果你想取消这个事件,则为true
    • getHandlers

      @NotNull public @NotNull HandlerList getHandlers()
      指定者:
      getHandlers 在类中 Event
    • getHandlerList

      @NotNull public static @NotNull HandlerList getHandlerList()