package openfl.events {
/**
 * 	The EventPhase class provides values for the `eventPhase`
 * 	property of the Event class.
 * 
 * 	@see `openfl.events.EventDispatcher`
 * 	@see `openfl.events.Event`
 * 
 * @externs
 */
public class EventPhase {
	/**
	 * 		The target phase, which is the second phase of the event flow.
	 * 	
	 */
	public static const AT_TARGET:int = 2;
	/**
	 * 		The bubbling phase, which is the third phase of the event flow.
	 * 	
	 */
	public static const BUBBLING_PHASE:int = 3;
	/**
	 * 		The capturing phase, which is the first phase of the event flow.
	 * 	
	 */
	public static const CAPTURING_PHASE:int = 1;
}
}
