Paquete | mx.utils |
Clase | public class XMLNotifier |
Herencia | XMLNotifier Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Propiedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
Constructor. | XMLNotifier | ||
[estática]
Get the singleton instance of the XMLNotifier. | XMLNotifier | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Given an XML or XMLList, remove the specified notification function. | XMLNotifier | ||
Devuelve el valor simple del objeto especificado. | Object | ||
Given an XML or XMLList, add the notification function
to watch for changes. | XMLNotifier |
Información sobre constructores
XMLNotifier | () | Información sobre |
public function XMLNotifier(x:XMLNotifierSingleton)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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 |
Información sobre métodos
getInstance | () | método |
public static function getInstance():XMLNotifier
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Get the singleton instance of the XMLNotifier.
Valor devueltoXMLNotifier — The XMLNotifier object.
|
unwatchXML | () | método |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, remove the specified notification function.
Parámetros
xml:Object — XML/XMLList object to un-watch.
| |
notifiable:IXMLNotifiable — Function notification function.
|
watchXML | () | método |
public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, add the notification function to watch for changes.
Parámetros
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:12 PM Z