001    package org.bukkit.inventory;
002    
003    import org.bukkit.block.BrewingStand;
004    
005    /**
006     * Interface to the inventory of a Brewing Stand.
007     */
008    public interface BrewerInventory extends Inventory {
009    
010        /**
011         * Get the current ingredient for brewing.
012         *
013         * @return The ingredient.
014         */
015        ItemStack getIngredient();
016    
017        /**
018         * Set the current ingredient for brewing.
019         *
020         * @param ingredient The ingredient
021         */
022        void setIngredient(ItemStack ingredient);
023    
024        BrewingStand getHolder();
025    }