1  /**
     2   * com.sekati.events.IEventBroadcastable
     3   * @version 1.0.5
     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.core.CoreInterface;
    10  
    11  /**
    12   * Interface describing EventBroadcasters such as {@link com.sekati.events.EventBroadcaster}.
    13   */
    14  interface com.sekati.events.IEventBroadcastable extends CoreInterface {
    15  
    16  	function addEventListener(o:Object, event:String, handler:Function):Void;
    17  
    18  	function removeEventListener(o:Object, event:String, handler:Function):Void;
    19  
    20  	function reset():Void;
    21  
    22  	function broadcastEvent(o:Object, event:String):Void;
    23  }