Class BukkitGUIHolder
java.lang.Object
me.hsgamer.hscore.minecraft.gui.holder.GUIHolder<BukkitInventoryContext>
me.hsgamer.hscore.bukkit.gui.holder.BukkitGUIHolder
- All Implemented Interfaces:
GUIElement
The
GUIHolder
for Bukkit-
Constructor Summary
ConstructorsConstructorDescriptionBukkitGUIHolder
(UUID viewerID, Function<BukkitGUIHolder, org.bukkit.inventory.Inventory> inventoryFunction) Create a new holder -
Method Summary
Modifier and TypeMethodDescriptionprotected BukkitInventoryContext
Create the inventory contextvoid
handleClick
(ClickEvent event) Override this method to add custom behavior.void
handleDrag
(BukkitDragEvent event) Handle the drag eventvoid
Open the inventoryvoid
setCancelDragEvent
(boolean cancelDragEvent) Set whether to cancel the drag eventprotected void
setItem
(int slot, @Nullable ActionItem item) Set the item in the slotvoid
setMoveItemOnBottom
(boolean moveItemOnBottom) Set whether to allow moving items in the bottom inventoryMethods inherited from class me.hsgamer.hscore.minecraft.gui.holder.GUIHolder
canSetItem, getButtonMap, getInventoryContext, getItem, getItemMap, getViewerID, handleClose, handleOpen, init, open, setButtonMap, stop, update
-
Constructor Details
-
BukkitGUIHolder
public BukkitGUIHolder(UUID viewerID, Function<BukkitGUIHolder, org.bukkit.inventory.Inventory> inventoryFunction) Create a new holder- Parameters:
viewerID
- the unique ID of the viewerinventoryFunction
- the function to create the inventory
-
-
Method Details
-
setMoveItemOnBottom
public void setMoveItemOnBottom(boolean moveItemOnBottom) Set whether to allow moving items in the bottom inventory- Parameters:
moveItemOnBottom
- true to allow
-
setCancelDragEvent
public void setCancelDragEvent(boolean cancelDragEvent) Set whether to cancel the drag event- Parameters:
cancelDragEvent
- true to cancel
-
createInventoryContext
Description copied from class:GUIHolder
Create the inventory context- Specified by:
createInventoryContext
in classGUIHolder<BukkitInventoryContext>
- Returns:
- the inventory context
-
setItem
Description copied from class:GUIHolder
Set the item in the slot- Specified by:
setItem
in classGUIHolder<BukkitInventoryContext>
- Parameters:
slot
- the slotitem
- the item
-
open
Description copied from class:GUIHolder
Open the inventory- Specified by:
open
in classGUIHolder<BukkitInventoryContext>
- Parameters:
uuid
- the unique ID of the player
-
handleClick
Description copied from class:GUIHolder
Override this method to add custom behavior.- Overrides:
handleClick
in classGUIHolder<BukkitInventoryContext>
-
handleDrag
Handle the drag event- Parameters:
event
- the event
-