Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
PlayerBucketFillEvent.java
Go to the documentation of this file.
1 package org.bukkit.event.player;
2 
3 import org.bukkit.Material;
4 import org.bukkit.block.Block;
5 import org.bukkit.block.BlockFace;
6 import org.bukkit.entity.Player;
7 import org.bukkit.event.HandlerList;
8 import org.bukkit.inventory.ItemStack;
9 
14  private static final HandlerList handlers = new HandlerList();
15 
16  public PlayerBucketFillEvent(final Player who, final Block blockClicked, final BlockFace blockFace, final Material bucket, final ItemStack itemInHand) {
17  super(who, blockClicked, blockFace, bucket, itemInHand);
18  }
19 
20  @Override
22  return handlers;
23  }
24 
25  public static HandlerList getHandlerList() {
26  return handlers;
27  }
28 }