Class GenericGameEvent

All Implemented Interfaces:
Cancellable

public class GenericGameEvent extends WorldEvent implements Cancellable
Represents a generic Mojang game event. Specific Bukkit events should be used where possible, this event is mainly used internally by Sculk sensors.
  • Constructor Details Link icon

    • GenericGameEvent Link icon

      public GenericGameEvent(@NotNull GameEvent event, @NotNull Location location, @Nullable Entity entity, int radius, boolean isAsync)
  • Method Details Link icon

    • getEvent Link icon

      @NotNull public GameEvent getEvent()
      Get the underlying event.
      Returns:
      the event
    • getLocation Link icon

      @NotNull public Location getLocation()
      Get the location where the event occurred.
      Returns:
      event location
    • getEntity Link icon

      @Nullable public Entity getEntity()
      Get the entity which triggered this event, if present.
      Returns:
      triggering entity or null
    • getRadius Link icon

      public int getRadius()
      Get the block radius to which this event will be broadcast.
      Returns:
      broadcast radius
    • setRadius Link icon

      public void setRadius(int radius)
      Set the radius to which the event should be broadcast.
      Parameters:
      radius - radius, must be greater than or equal to 0
    • setCancelled Link icon

      public void setCancelled(boolean cancel)
      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:
      cancel - true if you wish to cancel this event
    • isCancelled Link icon

      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
    • getHandlers Link icon

      @NotNull public HandlerList getHandlers()
      Specified by:
      getHandlers in class Event
    • getHandlerList Link icon

      @NotNull public static HandlerList getHandlerList()