Class VillagerReplenishTradeEvent

    • Constructor Detail

    • 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: Cancellable
        Gets 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:
        isCancelled in interface Cancellable
        Returns:
        true if this event is cancelled
      • setCancelled

        public void setCancelled​(boolean cancel)
        Description copied from interface: Cancellable
        Sets 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:
        setCancelled in interface Cancellable
        Parameters:
        cancel - true if you wish to cancel this event
      • getHandlerList

        @NotNull
        public static HandlerList getHandlerList()