java.lang.Object
me.hsgamer.hscore.minecraft.gui.common.item.ActionItem

public final class ActionItem extends Object
The action item
  • Constructor Details

    • ActionItem

      public ActionItem()
  • Method Details

    • getItem

      @Nullable public @Nullable Object getItem()
      Get the item
      Returns:
      the item
    • setItem

      public ActionItem setItem(@Nullable @Nullable Object item)
      Set the item
      Parameters:
      item - the item
      Returns:
      this object
    • getAction

      @Nullable public @Nullable Consumer<ViewerEvent> getAction()
      Get the action
      Returns:
      the action
    • setAction

      public ActionItem setAction(@Nullable @Nullable Consumer<ViewerEvent> action)
      Set the action
      Parameters:
      action - the action
      Returns:
      this object
    • extendAction

      public ActionItem extendAction(BiConsumer<ViewerEvent,Consumer<ViewerEvent>> operator)
      Extend the action
      Parameters:
      operator - the operator with the event and the old action
      Returns:
      this object
    • setAction

      public <E extends ViewerEvent> ActionItem setAction(Class<E> eventClass, Consumer<E> action)
      Set the action
      Type Parameters:
      E - the event type
      Parameters:
      eventClass - the event class
      action - the action
      Returns:
      this object
    • extendAction

      public <E extends ViewerEvent> ActionItem extendAction(Class<E> eventClass, BiConsumer<E,Consumer<ViewerEvent>> operator)
      Extend the action
      Type Parameters:
      E - the event type
      Parameters:
      eventClass - the event class
      operator - the operator with the event and the old action
      Returns:
      this object
    • callAction

      public void callAction(ViewerEvent event)
      Call the action
      Parameters:
      event - the event
    • apply

      public ActionItem apply(ActionItem actionItem)
      Apply the action item
      Parameters:
      actionItem - the action item
      Returns:
      this object