From b513e19ee0ddd8e0dab895dc3a195a5a91a87989 Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 8 Aug 2016 18:24:14 +1000 Subject: SPIGOT-2581: EntityAirChangeEvent --- .../bukkit/event/entity/EntityAirChangeEvent.java | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/main/java/org/bukkit/event/entity/EntityAirChangeEvent.java diff --git a/src/main/java/org/bukkit/event/entity/EntityAirChangeEvent.java b/src/main/java/org/bukkit/event/entity/EntityAirChangeEvent.java new file mode 100644 index 00000000..0c9de8e3 --- /dev/null +++ b/src/main/java/org/bukkit/event/entity/EntityAirChangeEvent.java @@ -0,0 +1,59 @@ +package org.bukkit.event.entity; + +import org.bukkit.entity.Entity; +import org.bukkit.event.Cancellable; +import org.bukkit.event.HandlerList; + +/** + * Called when the amount of air an entity has remaining changes. + */ +public class EntityAirChangeEvent extends EntityEvent implements Cancellable { + + private static final HandlerList handlers = new HandlerList(); + // + private int amount; + // + private boolean cancelled; + + public EntityAirChangeEvent(Entity what, int amount) { + super(what); + this.amount = amount; + } + + /** + * Gets the amount of air the entity has left (measured in ticks). + * + * @return amount of air remaining + */ + public int getAmount() { + return amount; + } + + /** + * Sets the amount of air remaining for the entity (measured in ticks. + * + * @param amount amount of air remaining + */ + public void setAmount(int amount) { + this.amount = amount; + } + + @Override + public boolean isCancelled() { + return cancelled; + } + + @Override + public void setCancelled(boolean cancelled) { + this.cancelled = cancelled; + } + + @Override + public HandlerList getHandlers() { + return handlers; + } + + public static HandlerList getHandlerList() { + return handlers; + } +} -- cgit v1.2.3