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 Summary
Modifier and TypeMethodDescriptionstatic void
handleIfElement
(Object o, Consumer<GUIElement> elementConsumer) Handle the object if it is an instance ofGUIElement
static <T> void
handleIfElement
(Collection<T> collection, Consumer<GUIElement> elementConsumer) Loop through the collection and handle the element if it is an instance ofGUIElement
default void
init()
Initialize the element.default void
stop()
Stop the element.
-
Method Details
-
handleIfElement
Handle the object if it is an instance ofGUIElement
- Parameters:
o
- the objectelementConsumer
- the consumer
-
handleIfElement
Loop through the collection and handle the element if it is an instance ofGUIElement
- Parameters:
collection
- the collectionelementConsumer
- 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.
-