Pacote | mx.utils |
Classe | public class XMLNotifier |
Herança | XMLNotifier Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
Constructor. | XMLNotifier | ||
[estático]
Get the singleton instance of the XMLNotifier. | XMLNotifier | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Given an XML or XMLList, remove the specified notification function. | XMLNotifier | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Given an XML or XMLList, add the notification function
to watch for changes. | XMLNotifier |
Detalhes do construtor
XMLNotifier | () | Construtor |
public function XMLNotifier(x:XMLNotifierSingleton)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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 |
Detalhes do método
getInstance | () | método |
public static function getInstance():XMLNotifier
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Get the singleton instance of the XMLNotifier.
RetornaXMLNotifier — The XMLNotifier object.
|
unwatchXML | () | método |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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
|
Wed Jun 13 2018, 11:10 AM Z