类 PlayerChatTabCompleteEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
org.bukkit.event.player.PlayerChatTabCompleteEvent

@Deprecated public class PlayerChatTabCompleteEvent extends PlayerEvent
已过时。
因客户端的改变(1.13更新较大幅度改善了命令输入的体验), 该事件不再触发. 1.13+版本可以参考:PlayerCommandSendEvent
当玩家尝试补全聊天消息时触发本事件
  • 构造器详细资料

  • 方法详细资料

    • getChatMessage

      @NotNull public @NotNull String getChatMessage()
      已过时。
      获取将被补全的聊天消息.

      原文:Gets the chat message being tab-completed.

      返回:
      聊天消息
    • getLastToken

      @NotNull public @NotNull String getLastToken()
      已过时。
      获取被补全消息的最后一个'标记'.

      标记是字符开始后的最后一个组成部分. (比如“res ? test”,这里的last token就是test)

      原文:Gets the last 'token' of the message being tab-completed.

      The token is the substring starting with the character after the last space in the message.

      返回:
      聊天消息的最后一个标记
    • getTabCompletions

      @NotNull public @NotNull Collection<String> getTabCompletions()
      已过时。
      获取所有补全项集合.

      原文:This is the collection of completions for this event.

      返回:
      补全项
    • getHandlers

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

      @NotNull public static @NotNull HandlerList getHandlerList()
      已过时。