package com.exanimo.gallery { /** * * .. * * @langversion ActionScript 3 * @playerversion Flash 9.0.0 * * @author Eric Eldredge * @author Rich Perez * @author Matthew Tretter * @since 2009.01.12 * */ public interface ISelectableGalleryItem extends IGalleryItem { // // accessors // /** * * */ function get selected():Boolean; /** * @private */ function set selected(selected:Boolean):void; } }