All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.placeblock.betterinventories.gui.impl.ChestGUI Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package de.placeblock.betterinventories.gui.impl;

import de.placeblock.betterinventories.content.pane.impl.simple.SimpleGUIPane;
import net.kyori.adventure.text.TextComponent;
import org.bukkit.plugin.Plugin;
import org.bukkit.plugin.java.JavaPlugin;

/**
 * Implementation of {@link BaseChestGUI} using SimpleGUIPane that auto resizes
 */
public class ChestGUI extends BaseChestGUI {

    /**
     * Creates a new ChestGUI
     * @param plugin The plugin
     * @param title The title of the GUI
     * @param minHeight The minimum height of the GUI
     * @param maxHeight The maximum height of the GUI
     * @param removeItems Whether to remove loose items on close.
     *                   The first player that closes the gui gets the items
     */
    @Deprecated(forRemoval = true)
    public ChestGUI(Plugin plugin, TextComponent title, boolean removeItems, int minHeight, int maxHeight) {
        super(plugin, title, removeItems, minHeight, maxHeight);
        this.setCanvas(new SimpleGUIPane.Builder(this).adoptMinMax(this).autoSize(true).build());
    }

    /**
     * Builder for creating ChestGUIs
     * @param 

The Plugin that uses this builder */ public static class Builder

extends BaseChestGUI.Builder, ChestGUI, SimpleGUIPane, P> { /** * Creates a new Builder * @param plugin The plugin that uses this builder */ public Builder(P plugin) { super(plugin); } /** * Sets the minHeight and maxHeight attributes * @param height The height of the GUI * @return Itself */ public Builder

height(int height) { this.minHeight(height); this.maxHeight(height); return this.self(); } @Override public ChestGUI build() { return new ChestGUI(this.getPlugin(), this.getTitle(), this.isRemoveItems(), this.getMinHeight(), this.getMaxHeight()); } @Override protected Builder

self() { return this; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy