DispatchableXml
| Kind of class: | class |
|---|---|
| Inherits from: | CoreXml < XML |
| Implements: | |
| Known subclasses: | |
| Version: | 04/03/07 |
| Author: | Aaron Clinger |
| Classpath: | org.casaframework.xml.DispatchableXml |
| File last modified: | Sunday, 19 August 2007, 13:43:33 |
Base XML that includes org.casaframework.event.EventDispatcher and extends CoreXml.
Summary
Constructor
Instance properties
Instance properties inherited from CoreXml
Instance methods
- addEventObserver
- removeEventObserver
- removeEventObserversForEvent
- removeEventObserversForScope
- removeAllEventObservers
- dispatchEvent
- destroy
Instance methods inherited from CoreXml
Constructor
DispatchableXml
function DispatchableXml (text:String)
Parameters:
text:
The XML text parsed to create the new XML object.
Instance methods
addEventObserver
function addEventObserver (scope:Object,
eventName:String,
eventHandler:String) : Boolean
Registers a function to receive notification when a event handler is invoked.
#Returns:
Returns
#true if the observer was established successfully; otherwise false.destroy
function destroy () : Void
Removes any internal variables, intervals, enter frames, internal MovieClips and event observers to allow the object to be garbage collected.
Always call
#Always call
destroy() before deleting last object pointer.Overrides:
Specified by:
dispatchEvent
function dispatchEvent (eventName:String) : Boolean
Reports event to all subscribed objects.
#Returns:
Returns
#true if observer(s) listening to specifed event were found; otherwise false.removeAllEventObservers
function removeAllEventObservers () : Boolean
Removes all observers regardless of scope or event.
#Returns:
Returns
#true if observers were successfully removed; otherwise false.removeEventObserver
function removeEventObserver (scope:Object,
eventName:String,
eventHandler:String) : Boolean
Removes specific observer for event.
#Returns:
Returns
#true if the observer was successfully found and removed; otherwise false.removeEventObserversForEvent
function removeEventObserversForEvent (eventName:String) : Boolean
Removes all observers for a specified event.
#