Class PlayerRecipeBookClickEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
org.bukkit.event.player.PlayerRecipeBookClickEvent

@Deprecated(forRemoval=true) public class PlayerRecipeBookClickEvent extends PlayerEvent
Deprecated, for removal: This API element is subject to removal in a future version.
Called when a player clicks a recipe in the recipe book.
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.bukkit.event.Event

    Event.Result
  • Field Summary

    Fields inherited from class org.bukkit.event.player.PlayerEvent

    player
  • Constructor Summary

    Constructors
    Constructor
    Description
    PlayerRecipeBookClickEvent(@NotNull Player player, @NotNull Recipe recipe, boolean shiftClick)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the original recipe the player was trying to craft.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the recipe the player is trying to craft.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    If true the game will attempt to move the ingredients for as many copies of this recipe as possible into the appropriate slots, otherwise only 1 copy will be moved.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Set the recipe that will be used.
    void
    setShiftClick(boolean shiftClick)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Sets if the game will attempt to move the ingredients for as many copies of this recipe as possible into the appropriate slots.

    Methods inherited from class org.bukkit.event.player.PlayerEvent

    getPlayer

    Methods inherited from class org.bukkit.event.Event

    callEvent, getEventName, isAsynchronous

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • PlayerRecipeBookClickEvent

      public PlayerRecipeBookClickEvent(@NotNull @NotNull Player player, @NotNull @NotNull Recipe recipe, boolean shiftClick)
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • getOriginalRecipe

      @NotNull public @NotNull Recipe getOriginalRecipe()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the original recipe the player was trying to craft.
      This will not reflect any changes made with setRecipe(@org.jetbrains.annotations.NotNull org.bukkit.inventory.Recipe).
      Returns:
      the original recipe
    • getRecipe

      @NotNull public @NotNull Recipe getRecipe()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the recipe the player is trying to craft.
      This will reflect changes made with setRecipe(@org.jetbrains.annotations.NotNull org.bukkit.inventory.Recipe).
      Returns:
      the recipe
    • setRecipe

      public void setRecipe(@NotNull @NotNull Recipe recipe)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Set the recipe that will be used.
      The game will attempt to move the ingredients for this recipe into the appropriate slots.

      If the original recipe is a CraftingRecipe the provided recipe must also be a CraftingRecipe, otherwise the provided recipe must be of the same type as the original recipe.

      Parameters:
      recipe - the recipe to be used
    • isShiftClick

      public boolean isShiftClick()
      Deprecated, for removal: This API element is subject to removal in a future version.
      If true the game will attempt to move the ingredients for as many copies of this recipe as possible into the appropriate slots, otherwise only 1 copy will be moved.
      Returns:
      whether as many copies as possible should be moved
    • setShiftClick

      public void setShiftClick(boolean shiftClick)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Sets if the game will attempt to move the ingredients for as many copies of this recipe as possible into the appropriate slots.
      Parameters:
      shiftClick - whether as many copies as possible should be moved
    • getHandlers

      @NotNull public @NotNull HandlerList getHandlers()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Specified by:
      getHandlers in class Event
    • getHandlerList

      @NotNull public static @NotNull HandlerList getHandlerList()
      Deprecated, for removal: This API element is subject to removal in a future version.