1  /**
     2   * com.sekati.display.ILiquidClip
     3   * @version 1.0.1
     4   * @author jason m horwitz | sekati.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8  
     9  import com.sekati.display.IBaseClip;
    10  
    11  /**
    12   * Interface describing {@link com.sekati.display.LiquidClip} and its subclips which add 
    13   * need to respond to {@link com.sekati.display.StageDisplay} events such as onResize or 
    14   * onResizeComplete.
    15   */
    16  interface com.sekati.display.ILiquidClip extends IBaseClip {
    17  
    18  	/**
    19  	 * Triggered by {@link com.sekati.events.Dispatcher} upon StageResize.
    20  	 * @return Void
    21  	 */
    22  	function _onResize():Void;
    23  
    24  	/**
    25  	 * Triggered by {@link com.sekati.events.Dispatcher} upon StageResizeComplete 
    26  	 * as defined by {@link com.sekati.display.StageDisplay}.
    27  	 * @return Void
    28  	 */
    29  	function _onResizeComplete():Void;
    30  }