Packageorg.osflash.signals.events
Interfacepublic interface IEvent
Implementors GenericEvent



Public Properties
 PropertyDefined By
  bubbles : Boolean
Indicates whether the event is a bubbling event.
IEvent
  currentTarget : Object
The object that added the listener for the event.
IEvent
  signal : IPrioritySignal
The signal that dispatched the event.
IEvent
  target : Object
The object that originally dispatched the event.
IEvent
Public Methods
 MethodDefined By
  
Returns a new copy of the instance.
IEvent
Property Detail
bubblesproperty
bubbles:Boolean

Indicates whether the event is a bubbling event.


Implementation
    public function get bubbles():Boolean
    public function set bubbles(value:Boolean):void
currentTargetproperty 
currentTarget:Object

The object that added the listener for the event.


Implementation
    public function get currentTarget():Object
    public function set currentTarget(value:Object):void
signalproperty 
signal:IPrioritySignal

The signal that dispatched the event.


Implementation
    public function get signal():IPrioritySignal
    public function set signal(value:IPrioritySignal):void
targetproperty 
target:Object

The object that originally dispatched the event. When dispatched from an signal, the target is the object containing the signal.


Implementation
    public function get target():Object
    public function set target(value:Object):void
Method Detail
clone()method
public function clone():IEvent

Returns a new copy of the instance.

Returns
IEvent