1 /** 2 * com.sekati.events.IEvent 3 * @version 1.0.0 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 {@link com.sekati.events.Event}. 13 */ 14 interface com.sekati.events.IEvent extends CoreInterface { 15 16 function bubble(newTarget:Object):Void; 17 }