Class TabCompleteEvent

  • All Implemented Interfaces:
    Cancellable

    public class TabCompleteEvent
    extends Event
    implements Cancellable
    Called when a CommandSender of any description (ie: player or console) attempts to tab complete.
    Note that due to client changes, if the sender is a Player, this event will only begin to fire once command arguments are specified, not commands themselves. Plugins wishing to remove commands from tab completion are advised to ensure the client does not have permission for the relevant commands, or use PlayerCommandSendEvent.
    • Constructor Detail

    • Method Detail

      • getSender

        @NotNull
        public CommandSender getSender()
        Get the sender completing this command.
        Returns:
        the CommandSender instance
      • getBuffer

        @NotNull
        public String getBuffer()
        Return the entire buffer which formed the basis of this completion.
        Returns:
        command buffer, as entered
      • getCompletions

        @NotNull
        public 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.
        Returns:
        a list of offered completions
      • setCompletions

        public void setCompletions​(@NotNull
                                   List<String> completions)
        Set the completions offered, overriding any already set.
        Parameters:
        completions - the new completions
      • isCancelled

        public boolean isCancelled()
        Description copied from interface: 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
        Specified by:
        isCancelled in interface Cancellable
        Returns:
        true if this event is cancelled
      • setCancelled

        public void setCancelled​(boolean cancelled)
        Description copied from interface: 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.
        Specified by:
        setCancelled in interface Cancellable
        Parameters:
        cancelled - true if you wish to cancel this event
      • getHandlerList

        @NotNull
        public static HandlerList getHandlerList()