Packageorg.osflash.signals.events
Classpublic class GenericEvent
InheritanceGenericEvent Inheritance Object
Implements IEvent

See also

Documentation for the event interface being maintained in IEvent to avoid duplication for now.


Public Properties
 PropertyDefined By
  bubbles : Boolean
Indicates whether the event is a bubbling event.
GenericEvent
  currentTarget : Object
The object that added the listener for the event.
GenericEvent
  signal : IPrioritySignal
The signal that dispatched the event.
GenericEvent
  target : Object
The object that originally dispatched the event.
GenericEvent
Protected Properties
 PropertyDefined By
  _bubbles : Boolean
GenericEvent
  _currentTarget : Object
GenericEvent
  _signal : IPrioritySignal
GenericEvent
  _target : Object
GenericEvent
Public Methods
 MethodDefined By
  
GenericEvent(bubbles:Boolean = false)
GenericEvent
  
Returns a new copy of the instance.
GenericEvent
Property Detail
_bubblesproperty
protected var _bubbles:Boolean

_currentTargetproperty 
protected var _currentTarget:Object

_signalproperty 
protected var _signal:IPrioritySignal

_targetproperty 
protected var _target:Object

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
Constructor Detail
GenericEvent()Constructor
public function GenericEvent(bubbles:Boolean = false)



Parameters
bubbles:Boolean (default = false)
Method Detail
clone()method
public function clone():IEvent

Returns a new copy of the instance.

Returns
IEvent