Pakiet | mx.utils |
Klasa | public class XMLNotifier |
Dziedziczenie | XMLNotifier Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Właściwości publiczne
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
Constructor. | XMLNotifier | ||
[statyczny]
Get the singleton instance of the XMLNotifier. | XMLNotifier | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Given an XML or XMLList, remove the specified notification function. | XMLNotifier | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object | ||
Given an XML or XMLList, add the notification function
to watch for changes. | XMLNotifier |
Konstruktor Szczegół
XMLNotifier | () | Konstruktor |
public function XMLNotifier(x:XMLNotifierSingleton)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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 |
Szczegół metody
getInstance | () | metoda |
public static function getInstance():XMLNotifier
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Get the singleton instance of the XMLNotifier.
ZwracaXMLNotifier — The XMLNotifier object.
|
unwatchXML | () | metoda |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, remove the specified notification function.
Parametry
xml:Object — XML/XMLList object to un-watch.
| |
notifiable:IXMLNotifiable — Function notification function.
|
watchXML | () | metoda |
public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, add the notification function to watch for changes.
Parametry
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, 12:06 PM Z