Package org.bukkit.event.world
Class GenericGameEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.world.WorldEvent
org.bukkit.event.world.GenericGameEvent
- All Implemented Interfaces:
- Cancellable
Represents a generic Mojang game event.
 Specific Bukkit events should be used where possible, this event is mainly
 used internally by Sculk sensors.
- 
Nested Class SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionGet the entity which triggered this event, if present.getEvent()Get the underlying event.static @NotNull HandlerListGet the location where the event occurred.intGet the block radius to which this event will be broadcast.booleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidsetRadius(int radius) Set the radius to which the event should be broadcast.Methods inherited from class org.bukkit.event.world.WorldEventgetWorldMethods inherited from class org.bukkit.event.EventcallEvent, getEventName, isAsynchronous
- 
Constructor Details- 
GenericGameEvent
 
- 
- 
Method Details- 
getEventGet the underlying event.- Returns:
- the event
 
- 
getLocationGet the location where the event occurred.- Returns:
- event location
 
- 
getEntityGet the entity which triggered this event, if present.- Returns:
- triggering entity or null
 
- 
getRadiuspublic int getRadius()Get the block radius to which this event will be broadcast.- Returns:
- broadcast radius
 
- 
setRadiuspublic 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
 
- 
setCancelledpublic void setCancelled(boolean cancel) Description copied from interface:CancellableSets 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:
- setCancelledin interface- Cancellable
- Parameters:
- cancel- true if you wish to cancel this event
 
- 
isCancelledpublic boolean isCancelled()Description copied from interface:CancellableGets 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:
- isCancelledin interface- Cancellable
- Returns:
- true if this event is cancelled
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
 
-