Pacchetto | mx.utils |
Classe | public class XMLNotifier |
Ereditarietà | XMLNotifier Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | 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.
Proprietà pubbliche
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
Constructor. | XMLNotifier | ||
[statico]
Get the singleton instance of the XMLNotifier. | XMLNotifier | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Given an XML or XMLList, remove the specified notification function. | XMLNotifier | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Given an XML or XMLList, add the notification function
to watch for changes. | XMLNotifier |
Descrizione della funzione di costruzione
XMLNotifier | () | Funzione di costruzione |
public function XMLNotifier(x:XMLNotifierSingleton)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | 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 |
Descrizione dei metodi
getInstance | () | metodo |
public static function getInstance():XMLNotifier
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Get the singleton instance of the XMLNotifier.
RestituisceXMLNotifier — The XMLNotifier object.
|
unwatchXML | () | metodo |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, remove the specified notification function.
Parametri
xml:Object — XML/XMLList object to un-watch.
| |
notifiable:IXMLNotifiable — Function notification function.
|
watchXML | () | metodo |
public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, add the notification function to watch for changes.
Parametri
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, 02:44 PM Z