Cancellable
public class InventoryMoveItemEvent extends Event implements Cancellable
When this event is called, the initiator may already have removed the item from the source inventory and is ready to move it into the destination inventory.
If this event is cancelled, the items will be returned to the source inventory, if needed.
If this event is not cancelled, the initiator will try to put the ItemStack into the destination inventory. If this is not possible and the ItemStack has not been modified, the source inventory slot will be restored to its former state. Otherwise any additional items will be discarded.
Event.Result
Constructor | Description |
---|---|
InventoryMoveItemEvent(Inventory sourceInventory,
ItemStack itemStack,
Inventory destinationInventory,
boolean didSourceInitiate) |
Modifier and Type | Method | Description |
---|---|---|
Inventory |
getDestination() |
Gets the Inventory that the ItemStack is being put into
|
static HandlerList |
getHandlerList() |
|
HandlerList |
getHandlers() |
|
Inventory |
getInitiator() |
Gets the Inventory that initiated the transfer.
|
ItemStack |
getItem() |
Gets the ItemStack being moved; if modified, the original item will not
be removed from the source inventory.
|
Inventory |
getSource() |
Gets the Inventory that the ItemStack is being taken from
|
boolean |
isCancelled() |
Gets the cancellation state of this event.
|
void |
setCancelled(boolean cancel) |
Sets the cancellation state of this event.
|
void |
setItem(ItemStack itemStack) |
Sets the ItemStack being moved; if this is different from the original
ItemStack, the original item will not be removed from the source
inventory.
|
getEventName, isAsynchronous
@NotNull public Inventory getSource()
@NotNull public ItemStack getItem()
public void setItem(@NotNull ItemStack itemStack)
itemStack
- The ItemStack@NotNull public Inventory getDestination()
@NotNull public Inventory getInitiator()
public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- true if you wish to cancel this event@NotNull public HandlerList getHandlers()
getHandlers
in class Event
@NotNull public static HandlerList getHandlerList()
Copyright © 2019. All rights reserved.