Paket | mx.utils |
Klass | public class XMLNotifier |
Arv | XMLNotifier Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
watchXML()
, passing in the same notification
function that you would pass to XML.notification.
Use unwatchXML()
to remove that notification.
Publika egenskaper
Publika metoder
Metod | Definieras med | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
Constructor. | XMLNotifier | ||
[statisk]
Get the singleton instance of the XMLNotifier. | XMLNotifier | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Given an XML or XMLList, remove the specified notification function. | XMLNotifier | ||
Returnerar det angivna objektets primitiva värde. | Object | ||
Given an XML or XMLList, add the notification function
to watch for changes. | XMLNotifier |
Konstruktordetaljer
XMLNotifier | () | Konstruktor |
public function XMLNotifier(x:XMLNotifierSingleton)
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
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 |
Metoddetaljer
getInstance | () | metod |
public static function getInstance():XMLNotifier
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Get the singleton instance of the XMLNotifier.
ReturnerarXMLNotifier — The XMLNotifier object.
|
unwatchXML | () | metod |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, remove the specified notification function.
Parametrar
xml:Object — XML/XMLList object to un-watch.
| |
notifiable:IXMLNotifiable — Function notification function.
|
watchXML | () | metod |
public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, add the notification function to watch for changes.
Parametrar
xml:Object — XML/XMLList object to watch.
| |
notifiable:IXMLNotifiable — Function that needs to be called.
| |
uid:String (default = null ) — UID for object
|
Tue Jun 12 2018, 01:40 PM Z