package com.exanimo.gallery { import com.exanimo.display.IDisplayObject; import com.exanimo.gallery.IGalleryController; /** * * .. * * @langversion ActionScript 3 * @playerversion Flash 9.0.0 * * @author Eric Eldredge * @author Rich Perez * @author Matthew Tretter * @since 2009.01.12 * */ public interface IGalleryView extends IDisplayObject { // // accessors // /** * * */ function get controller():IGalleryController; /** * @private */ function set controller(controller:IGalleryController):void; } }