1  /**
     2   * com.sekati.display.ITweenClip
     3   * @version 1.0.2
     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} clips which add 
    13   * prototypical (mc_tween2-like) tween functionality via mix-in.
    14   * @see {@link http://tweener.googlecode.com}
    15   */
    16  interface com.sekati.display.ITweenClip extends IBaseClip {
    17  
    18  	/**
    19  	 * wraps {@link com.sekati.transitions.Tweener.addTween}
    20  	 * @return Void
    21  	 */
    22  	function tween():Void;
    23  
    24  	/**
    25  	 * wrap {@link com.sekati.transitions.Tweener.removeTweens}
    26  	 * @return Void 
    27  	 */
    28  	function stopTween():Void;
    29  }