001    package org.bukkit.inventory.meta;
002    
003    /**
004     * Represents a map that can be scalable.
005     */
006    public interface MapMeta extends ItemMeta {
007    
008        /**
009         * Checks to see if this map is scaling.
010         *
011         * @return true if this map is scaling
012         */
013        boolean isScaling();
014    
015        /**
016         * Sets if this map is scaling or not.
017         *
018         * @param value true to scale
019         */
020        void setScaling(boolean value);
021    
022        MapMeta clone();
023    }