Class VillagerAcquireTradeEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.VillagerAcquireTradeEvent
- All Implemented Interfaces:
Cancellable
Called whenever a villager acquires a new trade.
-
Nested Class Summary
Nested classes/interfaces inherited from class Event
Event.Result -
Field Summary
Fields inherited from class EntityEvent
entity -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the Entity involved in this eventstatic HandlerListGet the recipe to be acquired.booleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidsetRecipe(MerchantRecipe recipe) Set the recipe to be acquired.Methods inherited from class EntityEvent
getEntityTypeMethods inherited from class Event
getEventName, isAsynchronous
-
Constructor Details
-
VillagerAcquireTradeEvent
-
-
Method Details
-
getRecipe
-
setRecipe
Set the recipe to be acquired.- Parameters:
recipe- the new recipe
-
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
-
getEntity
Description copied from class:EntityEventReturns the Entity involved in this event- Overrides:
getEntityin classEntityEvent- Returns:
- Entity who is involved in this event
-
getHandlers
- Specified by:
getHandlersin classEvent
-
getHandlerList
-