Package org.bukkit.event.entity
Class FoodLevelChangeEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.FoodLevelChangeEvent
- All Implemented Interfaces:
Cancellable
public class FoodLevelChangeEvent extends EntityEvent implements Cancellable
Called when a human entity's food level changes
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
Constructors Constructor Description FoodLevelChangeEvent(HumanEntity what, int level) -
Method Summary
Modifier and Type Method Description HumanEntitygetEntity()Returns the Entity involved in this eventintgetFoodLevel()Gets the resultant food level that the entity involved in this event should be set to.static HandlerListgetHandlerList()HandlerListgetHandlers()booleanisCancelled()Gets the cancellation state of this event.voidsetCancelled(boolean cancel)Sets the cancellation state of this event.voidsetFoodLevel(int level)Sets the resultant food level that the entity involved in this event should be set to
-
Constructor Details
-
Method Details
-
getEntity
Description copied from class:EntityEventReturns the Entity involved in this event- Overrides:
getEntityin classEntityEvent- Returns:
- Entity who is involved in this event
-
getFoodLevel
public int getFoodLevel()Gets the resultant food level that the entity involved in this event should be set to.Where 20 is a full food bar and 0 is an empty one.
- Returns:
- The resultant food level
-
setFoodLevel
public void setFoodLevel(int level)Sets the resultant food level that the entity involved in this event should be set to- Parameters:
level- the resultant food level that the entity involved in this event should be set to
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableGets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelledin interfaceCancellable- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel)Description copied from interface:CancellableSets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
setCancelledin interfaceCancellable- Parameters:
cancel- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlersin classEvent
-
getHandlerList
-