1  /**
     2   * com.sekati.display.ICoreClip
     3   * @version 1.0.7
     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.CoreClip} which
    13   * is the core UI building block class for all subclasses to
    14   * extend instead of {@link com.sekati.display.BaseClip}.
    15   */
    16  interface com.sekati.display.ICoreClip extends IBaseClip {
    17  
    18  	/**
    19  	 * handles the MovieClip.onLoad event which much call configUI
    20  	 */
    21  	function onLoad():Void;
    22  
    23  	/**
    24  	 * class method called once the clip has loadeded and been registered
    25  	 * to configure the clip UI and initialize its behavior.
    26  	 */
    27  	function configUI():Void;
    28  }