Package org.bukkit.event.player
Class PlayerChatTabCompleteEvent
- java.lang.Object
-
- org.bukkit.event.Event
-
- org.bukkit.event.player.PlayerEvent
-
- org.bukkit.event.player.PlayerChatTabCompleteEvent
-
@Deprecated public class PlayerChatTabCompleteEvent extends PlayerEvent
Deprecated.This event is no longer fired due to client changesCalled when a player attempts to tab-complete a chat message.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
-
Field Summary
-
Fields inherited from class org.bukkit.event.player.PlayerEvent
player
-
-
Constructor Summary
Constructors Constructor Description PlayerChatTabCompleteEvent(Player who, String message, Collection<String> completions)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getChatMessage()
Deprecated.Gets the chat message being tab-completed.static HandlerList
getHandlerList()
Deprecated.HandlerList
getHandlers()
Deprecated.String
getLastToken()
Deprecated.Gets the last 'token' of the message being tab-completed.Collection<String>
getTabCompletions()
Deprecated.This is the collection of completions for this event.-
Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
-
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
-
-
-
Constructor Detail
-
PlayerChatTabCompleteEvent
public PlayerChatTabCompleteEvent(@NotNull Player who, @NotNull String message, @NotNull Collection<String> completions)
Deprecated.
-
-
Method Detail
-
getChatMessage
@NotNull public String getChatMessage()
Deprecated.Gets the chat message being tab-completed.- Returns:
- the chat message
-
getLastToken
@NotNull public 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 Collection<String> getTabCompletions()
Deprecated.This is the collection of completions for this event.- Returns:
- the current completions
-
getHandlers
@NotNull public HandlerList getHandlers()
Deprecated.- Specified by:
getHandlers
in classEvent
-
getHandlerList
@NotNull public static HandlerList getHandlerList()
Deprecated.
-
-