Pakket | mx.utils |
Klasse | public class XMLNotifier |
Overerving | XMLNotifier Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Openbare eigenschappen
Openbare methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
Constructor. | XMLNotifier | ||
[statisch]
Get the singleton instance of the XMLNotifier. | XMLNotifier | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Given an XML or XMLList, remove the specified notification function. | XMLNotifier | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Given an XML or XMLList, add the notification function
to watch for changes. | XMLNotifier |
Constructordetails
XMLNotifier | () | Constructor |
public function XMLNotifier(x:XMLNotifierSingleton)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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 |
Methodedetails
getInstance | () | methode |
public static function getInstance():XMLNotifier
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Get the singleton instance of the XMLNotifier.
Geretourneerde waardeXMLNotifier — The XMLNotifier object.
|
unwatchXML | () | methode |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, remove the specified notification function.
Parameters
xml:Object — XML/XMLList object to un-watch.
| |
notifiable:IXMLNotifiable — Function notification function.
|
watchXML | () | methode |
public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):void
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, add the notification function to watch for changes.
Parameters
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:42 AM Z