| Package | mx.utils | 
| Class | public class XMLNotifier | 
| Inheritance | XMLNotifier    Object | 
watchXML(), passing in the same notification
  function that you would pass to XML.notification.
  Use unwatchXML() to remove that notification.
  
 | Method | Defined By | ||
|---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton) 
      Constructor.  | XMLNotifier | ||
[static] 
      Get the singleton instance of the XMLNotifier.  | XMLNotifier | ||
![]()  | 
	 Indicates whether an object has a specified property defined.  | Object | |
![]()  | 
	 Indicates whether an instance of the Object class is in the prototype chain of the object specified 
	 as the parameter.  | Object | |
![]()  | 
	 Indicates whether the specified property exists and is enumerable.  | Object | |
![]()  | 
     Sets the availability of a dynamic property for loop operations.  | Object | |
![]()  | 
	 Returns the string representation of this object, formatted according to locale-specific conventions.  | Object | |
![]()  | 
	 Returns the string representation of the specified object.  | Object | |
      Given an XML or XMLList, remove the specified notification function.  | XMLNotifier | ||
![]()  | 
	 Returns the primitive value of the specified object.  | Object | |
      Given an XML or XMLList, add the notification function
	  to watch for changes.  | XMLNotifier | ||
| XMLNotifier | () | Constructor | 
public function XMLNotifier(x:XMLNotifierSingleton)
      Constructor.
	 
	  XMLNotifier is a singleton class, so you do not use
	  the new operator to create multiple instances of it.
	  Instead, call the static method XMLNotifider.getInstance()
	  to get the sole instance of this class.
     
x:XMLNotifierSingleton | 
| getInstance | () | method | 
 public static function getInstance():XMLNotifierGet the singleton instance of the XMLNotifier.
ReturnsXMLNotifier | 
| unwatchXML | () | method | 
 public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):voidGiven an XML or XMLList, remove the specified notification function.
Parameters
xml:Object — XML/XMLList object to un-watch.
       | |
notifiable:IXMLNotifiable — Function notification function.
      | 
| watchXML | () | method | 
 public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):voidGiven an XML or XMLList, add the notification function to watch for changes.
Parameters
xml:Object — XML/XMLList object to watch.
       | |
notifiable:IXMLNotifiable — Function that needs to be called.
	   | |
uid:String (default = null) — UID for object
      |