Package org.bukkit.event.entity
Class VillagerReplenishTradeEvent
- java.lang.Object
-
- org.bukkit.event.Event
-
- org.bukkit.event.entity.EntityEvent
-
- org.bukkit.event.entity.VillagerReplenishTradeEvent
-
- All Implemented Interfaces:
Cancellable
public class VillagerReplenishTradeEvent extends EntityEvent implements Cancellable
Called when a villager's trade's maximum uses is increased, due to a player's trade.- See Also:
MerchantRecipe.getMaxUses()
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
-
Field Summary
-
Fields inherited from class org.bukkit.event.entity.EntityEvent
entity
-
-
Constructor Summary
Constructors Constructor Description VillagerReplenishTradeEvent(AbstractVillager what, MerchantRecipe recipe, int bonus)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBonus()Get the bonus uses added.AbstractVillagergetEntity()Returns the Entity involved in this eventstatic HandlerListgetHandlerList()HandlerListgetHandlers()MerchantRecipegetRecipe()Get the recipe to replenish.booleanisCancelled()Gets the cancellation state of this event.voidsetBonus(int bonus)Set the bonus uses added.voidsetCancelled(boolean cancel)Sets the cancellation state of this event.voidsetRecipe(MerchantRecipe recipe)Set the recipe to replenish.-
Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntityType
-
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
-
-
-
Constructor Detail
-
VillagerReplenishTradeEvent
public VillagerReplenishTradeEvent(@NotNull AbstractVillager what, @NotNull MerchantRecipe recipe, int bonus)
-
-
Method Detail
-
getRecipe
@NotNull public MerchantRecipe getRecipe()
Get the recipe to replenish.- Returns:
- the replenished recipe
-
setRecipe
public void setRecipe(@NotNull MerchantRecipe recipe)Set the recipe to replenish.- Parameters:
recipe- the replenished recipe
-
getBonus
public int getBonus()
Get the bonus uses added. The maximum uses of the recipe will be increased by this number.- Returns:
- the extra uses added
-
setBonus
public void setBonus(int bonus)
Set the bonus uses added.- Parameters:
bonus- the extra uses added- See Also:
getBonus()
-
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
@NotNull public AbstractVillager getEntity()
Description copied from class:EntityEventReturns the Entity involved in this event- Overrides:
getEntityin classEntityEvent- Returns:
- Entity who is involved in this event
-
getHandlers
@NotNull public HandlerList getHandlers()
- Specified by:
getHandlersin classEvent
-
getHandlerList
@NotNull public static HandlerList getHandlerList()
-
-