Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
InventoryCloseEvent.java
Go to the documentation of this file.
1 
2 package org.bukkit.event.inventory;
3 
4 import org.bukkit.entity.HumanEntity;
5 import org.bukkit.event.HandlerList;
6 import org.bukkit.inventory.InventoryView;
7 
11 public class InventoryCloseEvent extends InventoryEvent {
12  private static final HandlerList handlers = new HandlerList();
13 
15  super(transaction);
16  }
17 
22  public final HumanEntity getPlayer() {
23  return transaction.getPlayer();
24  }
25 
26  @Override
28  return handlers;
29  }
30 
31  public static HandlerList getHandlerList() {
32  return handlers;
33  }
34 }