Paket | mx.utils |
Sınıf | public class XMLNotifier |
Miras Alma | XMLNotifier Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
Constructor. | XMLNotifier | ||
[statik]
Get the singleton instance of the XMLNotifier. | XMLNotifier | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Given an XML or XMLList, remove the specified notification function. | XMLNotifier | ||
Belirtilen nesnenin temel değerini döndürür. | Object | ||
Given an XML or XMLList, add the notification function
to watch for changes. | XMLNotifier |
Yapıcı Ayrıntı
XMLNotifier | () | Yapıcı |
public function XMLNotifier(x:XMLNotifierSingleton)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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 |
Yöntem Ayrıntısı
getInstance | () | yöntem |
public static function getInstance():XMLNotifier
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Get the singleton instance of the XMLNotifier.
DöndürürXMLNotifier — The XMLNotifier object.
|
unwatchXML | () | yöntem |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, remove the specified notification function.
Parametreler
xml:Object — XML/XMLList object to un-watch.
| |
notifiable:IXMLNotifiable — Function notification function.
|
watchXML | () | yöntem |
public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Given an XML or XMLList, add the notification function to watch for changes.
Parametreler
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, 01:09 PM Z