Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
BlockFormEvent.java
Go to the documentation of this file.
1 package org.bukkit.event.block;
2 
3 import org.bukkit.block.Block;
4 import org.bukkit.block.BlockState;
5 import org.bukkit.event.Cancellable;
6 import org.bukkit.event.HandlerList;
7 
22 public class BlockFormEvent extends BlockGrowEvent implements Cancellable {
23  private static final HandlerList handlers = new HandlerList();
24 
25  public BlockFormEvent(final Block block, final BlockState newState) {
26  super(block, newState);
27  }
28 
29  @Override
31  return handlers;
32  }
33 
34  public static HandlerList getHandlerList() {
35  return handlers;
36  }
37 }