38 lines
889 B
Java
38 lines
889 B
Java
package org.bukkit.event.block;
|
|
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.event.Cancellable;
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
/**
|
|
* Called when leaves are decaying naturally.
|
|
* <p />
|
|
* If a Leaves Decay event is cancelled, the leaves will not decay.
|
|
*/
|
|
@SuppressWarnings("serial")
|
|
public class LeavesDecayEvent extends BlockEvent implements Cancellable {
|
|
private static final HandlerList handlers = new HandlerList();
|
|
private boolean cancel = false;
|
|
|
|
public LeavesDecayEvent(final Block block) {
|
|
super(Type.LEAVES_DECAY, block);
|
|
}
|
|
|
|
public boolean isCancelled() {
|
|
return cancel;
|
|
}
|
|
|
|
public void setCancelled(boolean cancel) {
|
|
this.cancel = cancel;
|
|
}
|
|
|
|
@Override
|
|
public HandlerList getHandlers() {
|
|
return handlers;
|
|
}
|
|
|
|
public static HandlerList getHandlerList() {
|
|
return handlers;
|
|
}
|
|
}
|