包 | mx.utils |
类 | public class XMLNotifier |
继承 | XMLNotifier Object |
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
watchXML()
,传入将要传递给 XML.notification 的同一通知函数。使用 unwatchXML()
删除该通知。
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
XMLNotifier(x:XMLNotifierSingleton)
构造函数。 | XMLNotifier | ||
[静态]
获取 XMLNotifier 的 singleton 实例。 | XMLNotifier | ||
表示对象是否已经定义了指定的属性。 | Object | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
在给定 XML 或 XMLList 的情况下,删除指定的通知函数。 | XMLNotifier | ||
返回指定对象的原始值。 | Object | ||
在给定 XML 或 XMLList 的情况下,添加要监视更改的通知函数。 | XMLNotifier |
构造函数详细信息
XMLNotifier | () | 构造函数 |
public function XMLNotifier(x:XMLNotifierSingleton)
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
构造函数。XMLNotifier 是一个 singleton 类,因此不使用 new
运算符为其创建多个实例,而应该调用 XMLNotifider.getInstance()
静态方法获取此类的唯一实例。
x:XMLNotifierSingleton |
方法详细信息
getInstance | () | 方法 |
public static function getInstance():XMLNotifier
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
获取 XMLNotifier 的 singleton 实例。
返回XMLNotifier — XMLNotifier 对象。
|
unwatchXML | () | 方法 |
public function unwatchXML(xml:Object, notifiable:IXMLNotifiable):void
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
在给定 XML 或 XMLList 的情况下,删除指定的通知函数。
参数
xml:Object — 要取消监视的 XML/XMLList 对象。
| |
notifiable:IXMLNotifiable — Function 通知函数。
|
watchXML | () | 方法 |
public function watchXML(xml:Object, notifiable:IXMLNotifiable, uid:String = null):void
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
在给定 XML 或 XMLList 的情况下,添加要监视更改的通知函数。
参数
xml:Object — 要监视的 XML/XMLList 对象。
| |
notifiable:IXMLNotifiable — 需要调用的函数。
| |
uid:String (default = null ) — 对象的 UID
|
Tue Jun 12 2018, 11:04 AM Z