mx.core
接口public interface IPropertyChangeNotifier extends IEventDispatcher , IUID
实现器 ObjectProxy, UIComponent

IPropertyChangeNotifier 接口定义标记接口。支持此接口的类以一种专业化方式声明支持事件传送。实现此接口的类必须对此类以及作为属性公开的所有嵌套类的每个属性调度事件。对于那些匿名属性(复杂的和非强类型的),实现这些类可提供自定义支持,或者可直接使用 ObjectProxy 类。此接口的实现者应使用 PropertyChangeEvent.createUpdateEvent() 方法为调度构建适当的更新事件。



公共属性
 属性定义方
 Inheriteduid : String
此对象的唯一标识符。
IUID
公共方法
 方法定义方
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。
IEventDispatcher
 Inherited
将事件调度到事件流中。
IEventDispatcher
 Inherited
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。
IEventDispatcher
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
从 EventDispatcher 对象中删除侦听器。
IEventDispatcher
 Inherited
检查是否用此 EventDispatcher 对象或其任何始祖为指定事件类型注册了事件侦听器。
IEventDispatcher