Changed all tabs to 4 spaces

This commit is contained in:
durron597
2011-01-01 08:01:07 -05:00
parent a7f4603bc6
commit de177404e3
19 changed files with 203 additions and 204 deletions

View File

@@ -7,24 +7,24 @@ import org.bukkit.event.Cancellable;
* Not implemented yet
*/
public class BlockPlacedEvent extends BlockEvent implements Cancellable {
private boolean cancel;
/**
* @param type
* @param theBlock
*/
public BlockPlacedEvent(Type type, Block theBlock) {
super(type, theBlock);
cancel = false;
}
private boolean cancel;
public boolean isCancelled() {
// TODO Auto-generated method stub
return cancel;
}
/**
* @param type
* @param theBlock
*/
public BlockPlacedEvent(Type type, Block theBlock) {
super(type, theBlock);
cancel = false;
}
public void setCancelled(boolean cancel) {
this.cancel = cancel;
}
public boolean isCancelled() {
// TODO Auto-generated method stub
return cancel;
}
public void setCancelled(boolean cancel) {
this.cancel = cancel;
}
}