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
构造器和说明 |
---|
InventoryMoveItemEvent(Inventory sourceInventory,
ItemStack itemStack,
Inventory destinationInventory,
boolean didSourceInitiate) |
限定符和类型 | 方法和说明 |
---|---|
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()
获取这个事件是否被取消.一个被取消的事件不会在服务器里被执行,但是仍然会传递事件到其他插件。
|
void |
setCancelled(boolean cancel)
取消这个事件.
|
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
public Inventory getSource()
public ItemStack getItem()
public void setItem(ItemStack itemStack)
itemStack
- The ItemStackpublic Inventory getDestination()
public Inventory getInitiator()
public boolean isCancelled()
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
isCancelled
在接口中 Cancellable
public void setCancelled(boolean cancel)
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.
setCancelled
在接口中 Cancellable
cancel
- 如果你想取消这个事件,则为truepublic HandlerList getHandlers()
getHandlers
在类中 Event
public static HandlerList getHandlerList()