Cancellable
InventoryClickEvent
, InventoryDragEvent
, TradeSelectEvent
public abstract class InventoryInteractEvent extends InventoryEvent implements Cancellable
Event.Result
transaction
Constructor | Description |
---|---|
InventoryInteractEvent(InventoryView transaction) |
Modifier and Type | Method | Description |
---|---|---|
Event.Result |
getResult() |
Gets the
Event.Result of this event. |
HumanEntity |
getWhoClicked() |
Gets the player who performed the click.
|
boolean |
isCancelled() |
Gets whether or not this event is cancelled.
|
void |
setCancelled(boolean toCancel) |
Proxy method to
setResult(org.bukkit.event.Event.Result) for the Cancellable
interface. |
void |
setResult(Event.Result newResult) |
Sets the result of this event.
|
getEventName, isAsynchronous
getHandlerList, getHandlers, getInventory, getView, getViewers
public InventoryInteractEvent(@NotNull InventoryView transaction)
@NotNull public HumanEntity getWhoClicked()
public void setResult(@NotNull Event.Result newResult)
newResult
- the new Event.Result
for this eventisCancelled()
@NotNull public Event.Result getResult()
Event.Result
of this event. The Result describes the
behavior that will be applied to the inventory in relation to this
event.public boolean isCancelled()
getResult()
. Result.ALLOW and
Result.DEFAULT will result in a returned value of false, but
Result.DENY will result in a returned value of true.
Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins
isCancelled
in interface Cancellable
public void setCancelled(boolean toCancel)
setResult(org.bukkit.event.Event.Result)
for the Cancellable
interface. setResult(org.bukkit.event.Event.Result)
is preferred, as it allows
you to specify the Result beyond Result.DENY and Result.ALLOW.
Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.
setCancelled
in interface Cancellable
toCancel
- result becomes DENY if true, ALLOW if falseCopyright © 2019. All rights reserved.