Class PlayerChatTabCompleteEvent

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

@Deprecated(since="1.13") public class PlayerChatTabCompleteEvent extends PlayerEvent
Deprecated.
This event is no longer fired due to client changes
Called when a player attempts to tab-complete a chat message.
  • Constructor Details

    • PlayerChatTabCompleteEvent

      @Internal public PlayerChatTabCompleteEvent(@NotNull @NotNull Player player, @NotNull @NotNull String message, @NotNull @NotNull Collection<String> completions)
      Deprecated.
  • Method Details

    • getChatMessage

      @NotNull public @NotNull String getChatMessage()
      Deprecated.
      Gets the chat message being tab-completed.
      Returns:
      the chat message
    • getLastToken

      @NotNull public @NotNull String getLastToken()
      Deprecated.
      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.

      Returns:
      The last token for the chat message
    • getTabCompletions

      @NotNull public @NotNull Collection<String> getTabCompletions()
      Deprecated.
      This is the collection of completions for this event.
      Returns:
      the current completions
    • getHandlers

      @NotNull public @NotNull HandlerList getHandlers()
      Deprecated.
      Specified by:
      getHandlers in class Event
    • getHandlerList

      @NotNull public static @NotNull HandlerList getHandlerList()
      Deprecated.