Removed cancellable import

This commit is contained in:
durron597 2011-01-01 06:51:34 -05:00
parent 7b6539422b
commit 53d287854e

View File

@ -5,43 +5,42 @@ package org.bukkit.event.block;
import org.bukkit.Block; import org.bukkit.Block;
import org.bukkit.Material; import org.bukkit.Material;
import org.bukkit.event.Cancellable;
/** /**
* @author durron597 * @author durron597
*/ */
public class BlockCanBuildEvent extends BlockEvent { public class BlockCanBuildEvent extends BlockEvent {
protected boolean buildable; protected boolean buildable;
protected int material; protected int material;
public BlockCanBuildEvent(Type type, Block block, int id, boolean canBuild) {
super(type, block);
buildable = canBuild;
material = id;
}
/** public BlockCanBuildEvent(Type type, Block block, int id, boolean canBuild) {
* Returns whether or not the block can be built here. By default, returns super(type, block);
* Minecraft's answer on whether the block can be built buildable = canBuild;
* material = id;
* @return boolean whether or not the block can be built }
*/
public boolean isBuildable() { /**
return buildable; * Returns whether or not the block can be built here. By default, returns
} * Minecraft's answer on whether the block can be built
*
/** * @return boolean whether or not the block can be built
* Set whether the block can be built here. */
*/ public boolean isBuildable() {
public void setBuildable(boolean cancel) { return buildable;
this.buildable = cancel; }
}
/**
public Material getMaterial() { * Set whether the block can be built here.
return Material.getMaterial(material); */
} public void setBuildable(boolean cancel) {
this.buildable = cancel;
public int getMaterialID() { }
return material;
} public Material getMaterial() {
return Material.getMaterial(material);
}
public int getMaterialID() {
return material;
}
} }