Interface GUIElement

All Known Implementing Classes:
AnimatedButton, AnimatedMask, BukkitGUIHolder, BukkitInventoryListener, ButtonPaginatedMask, GUIHolder, HolderBukkitInventoryListener, HybridMask, InputButton, ListButton, ListMask, MaskPaginatedMask, MinestomGUIHolder, MultiButton, MultiMask, MultiSlotsMask, OneTimeAnimatedMask, OutputButton, PaginatedMask, PlaceholderMask, PredicateButton, PredicateMask, SequencePaginatedMask, SimpleButtonMap, SingleMask

public interface GUIElement
An element of the GUI
  • Method Details

    • handleIfElement

      static void handleIfElement(Object o, Consumer<GUIElement> elementConsumer)
      Handle the object if it is an instance of GUIElement
      Parameters:
      o - the object
      elementConsumer - the consumer
    • handleIfElement

      static <T> void handleIfElement(Collection<T> collection, Consumer<GUIElement> elementConsumer)
      Loop through the collection and handle the element if it is an instance of GUIElement
      Parameters:
      collection - the collection
      elementConsumer - the consumer
    • init

      default void init()
      Initialize the element. Should be called before adding to the GUI.
    • stop

      default void stop()
      Stop the element. Should be called after removing from the GUI.