Class TabCompleteResponseEvent

  • All Implemented Interfaces:
    Cancellable

    public class TabCompleteResponseEvent
    extends TargetedEvent
    implements Cancellable
    Event called when a backend server sends a response to a player asking to tab-complete a chat message or command. Note that this is not called when BungeeCord or a plugin responds to a tab-complete request. Use TabCompleteEvent for that.
    • Method Detail

      • isCancelled

        public boolean isCancelled()
        Whether the event is cancelled.
        Specified by:
        isCancelled in interface Cancellable
        Returns:
        the cancelled state of this event
      • getSuggestions

        public List<String> getSuggestions()
        Mutable list of suggestions sent back to the player. If this list is empty, an empty list is sent back to the client.
      • setCancelled

        public void setCancelled​(boolean cancelled)
        Whether the event is cancelled.
        Specified by:
        setCancelled in interface Cancellable
        Parameters:
        cancelled - the state to set