Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
BlockEvent.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.event.Event;
5 
9 public abstract class BlockEvent extends Event {
10  protected Block block;
11 
12  public BlockEvent(final Block theBlock) {
13  block = theBlock;
14  }
15 
21  public final Block getBlock() {
22  return block;
23  }
24 }