001 package org.bukkit.inventory; 002 003 /** 004 * Interface to the inventory of a Beacon. 005 */ 006 public interface BeaconInventory extends Inventory { 007 008 /** 009 * Set the item powering the beacon. 010 * 011 * @param item The new item 012 */ 013 void setItem(ItemStack item); 014 015 /** 016 * Get the item powering the beacon. 017 * 018 * @return The current item. 019 */ 020 ItemStack getItem(); 021 }