org.bukkit.event.inventory
Class InventoryMoveItemEvent

java.lang.Object
  extended by org.bukkit.event.Event
      extended by org.bukkit.event.inventory.InventoryMoveItemEvent
All Implemented Interfaces:
Cancellable

public class InventoryMoveItemEvent
extends Event
implements Cancellable

Called when some entity or block (e.g. hopper) tries to move items directly from one inventory to another.

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.


Nested Class Summary
 
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
 
Constructor Summary
InventoryMoveItemEvent(Inventory sourceInventory, ItemStack itemStack, Inventory destinationInventory, boolean didSourceInitiate)
           
 
Method Summary
 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.
 
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InventoryMoveItemEvent

public InventoryMoveItemEvent(Inventory sourceInventory,
                              ItemStack itemStack,
                              Inventory destinationInventory,
                              boolean didSourceInitiate)
Method Detail

getSource

public Inventory getSource()
Gets the Inventory that the ItemStack is being taken from

Returns:
Inventory that the ItemStack is being taken from

getItem

public ItemStack getItem()
Gets the ItemStack being moved; if modified, the original item will not be removed from the source inventory.

Returns:
ItemStack

setItem

public 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.

Parameters:
itemStack - The ItemStack

getDestination

public Inventory getDestination()
Gets the Inventory that the ItemStack is being put into

Returns:
Inventory that the ItemStack is being put into

getInitiator

public Inventory getInitiator()
Gets the Inventory that initiated the transfer. This will always be either the destination or source Inventory.

Returns:
Inventory that initiated the transfer

isCancelled

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

setCancelled

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

getHandlers

public HandlerList getHandlers()
Specified by:
getHandlers in class Event

getHandlerList

public static HandlerList getHandlerList()


Copyright © 2013. All Rights Reserved.