Class ViewInventoryEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
de.themoep.ShowItem.api.event.ViewInventoryEvent
All Implemented Interfaces:
org.bukkit.event.Cancellable

public class ViewInventoryEvent extends org.bukkit.event.player.PlayerEvent implements org.bukkit.event.Cancellable
Event that is called when a player views an inventory shown by another player. Useful for plugins that provide custom inventory contents or cancel the viewing.
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.bukkit.event.Event

    org.bukkit.event.Event.Result
  • Field Summary

    Fields inherited from class org.bukkit.event.player.PlayerEvent

    player
  • Constructor Summary

    Constructors
    Constructor
    Description
    ViewInventoryEvent(org.bukkit.entity.Player who, InvData invData)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.bukkit.event.HandlerList
     
    org.bukkit.event.HandlerList
     
    Get the UUID of the player that sent the inventory
    Get the name of the player that sent the inventory
    Get the inventory data that is being shown to the player
    boolean
     
    void
    setCancelled(boolean cancelled)
     
    void
    Set the inventory data that is being shown to the player

    Methods inherited from class org.bukkit.event.player.PlayerEvent

    getPlayer

    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 Details

    • ViewInventoryEvent

      public ViewInventoryEvent(org.bukkit.entity.Player who, InvData invData)
  • Method Details

    • getShownData

      public InvData getShownData()
      Get the inventory data that is being shown to the player
      Returns:
      The inventory data
    • setShownData

      public void setShownData(InvData invData)
      Set the inventory data that is being shown to the player
      Parameters:
      invData - The inventory data
    • getSenderId

      public UUID getSenderId()
      Get the UUID of the player that sent the inventory
      Returns:
      The player that sent the inventory
    • getSenderName

      public String getSenderName()
      Get the name of the player that sent the inventory
      Returns:
      The name of the player that sent the inventory
    • getHandlers

      public org.bukkit.event.HandlerList getHandlers()
      Specified by:
      getHandlers in class org.bukkit.event.Event
    • getHandlerList

      public static org.bukkit.event.HandlerList getHandlerList()
    • isCancelled

      public boolean isCancelled()
      Specified by:
      isCancelled in interface org.bukkit.event.Cancellable
    • setCancelled

      public void setCancelled(boolean cancelled)
      Specified by:
      setCancelled in interface org.bukkit.event.Cancellable