BubbleEvent
| Kind of class: | class |
|---|---|
| Inherits from: | BasicEvent |
| Version: | 1.0 |
| Author: | Francis Bourre |
| Classpath: | com.bourre.events.BubbleEvent |
| File last modified: | Wednesday, 31 October 2007, 07:35:29 |
BubbleEvent defines specific event structure to work withBubbleEventBroadcaster
Based on BasicEvent class, BubbleEvent add access
to his specific bubbles and propagation properties.
Summary
Constructor
Constructor
BubbleEvent
function BubbleEvent (
e:EventType)
Constructs a new
BubbleEvent instance.bubbles and propagation properties are set
to true.
Example
var e : BubbleEvent = new BubbleEvent(MyClass.onSomething, this);
Instance properties
bubbles
bubbles:Boolean
(read,write)
Indicates if the event will be passed to the parent object.
propagation
propagation:Boolean
(read,write)
Indicates if the event is still be propagated
Instance methods
toString
function toString (
) : String
Returns the string representation of this instance.
Returns:
String representation of this instanceOverrides: