包 | mx.collections |
类 | public class XMLListCollection |
继承 | XMLListCollection ListCollectionView Proxy Object |
The <mx:XMLListCollection>
tag inherits all
the attributes of its superclass, and adds the following attributes:
<mx:XMLListCollection Properties source="null" />
默认 MXML 属性source
另请参见
属性 | 定义方 | ||
---|---|---|---|
constructor : Object
对类对象或给定对象实例的构造函数的引用。 | Object | ||
filterFunction : Function 视图用来消除不符合函数条件的项目的函数。 | ListCollectionView | ||
length : int [只读 (read-only)] 此视图中的项目数。 | ListCollectionView | ||
list : IList 此集合视图所封装的 IList。 | ListCollectionView | ||
prototype : Object [静态]
对类或函数对象的原型对象的引用。 | Object | ||
sort : Sort 将应用于 ICollectionView 的排序。 | ListCollectionView | ||
source : XMLList 此集合的基础 XMLList。 | XMLListCollection |
方法 | 定义方 | ||
---|---|---|---|
XMLListCollection(source:XMLList = null) 构造函数。 | XMLListCollection | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void 使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。 | ListCollectionView | ||
向列表末尾添加指定项目。 | ListCollectionView | ||
在指定的索引处添加项目。 | ListCollectionView | ||
调用 XMLList 中每个 XML 对象的 attribute() 方法,并返回与给定 attributeName 相匹配的结果 XMLList。 | XMLListCollection | ||
调用 XMLList 对象中的每个 XML 对象的 attributes() 方法,并返回每个 XML 对象属性的 XMList。 | XMLListCollection | ||
依次调用 XMLList 中的每个 XML 对象的 child() 方法,并返回包含具有指定属性名称的子项的 XMLList。 | XMLListCollection | ||
调用 XMLList 中的每个 XML 对象的 children() 方法,并返回包含结果的 XMLList。 | XMLListCollection | ||
返回指示视图是否包含指定对象的信息。 | ListCollectionView | ||
返回 XMLList 对象的深副本。 | XMLListCollection | ||
创建使用此视图的新 IViewCursor。 | ListCollectionView | ||
调用 XMLList 中的每个 XML 对象的 descendants() 方法,并返回包含结果的 XMLList。 | XMLListCollection | ||
防止视图调度对集合本身和集合中的项目的更改。 | ListCollectionView | ||
将事件调度到事件流中。 | ListCollectionView | ||
调用 XMLList 中的每个 XML 对象的 elements() 方法。 | XMLListCollection | ||
启用自动更新。 | ListCollectionView | ||
获取指定索引处的项目。 | ListCollectionView | ||
如果项目位于列表中(这样的话 getItemAt(index) == item),则返回该项目的索引。 | ListCollectionView | ||
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。 | ListCollectionView | ||
指示对象是否已经定义了指定的属性。 | Object | ||
如果 ListCollectionView 是使用 MXML 标签创建的,则由 MXML 编译器自动调用。 | ListCollectionView | ||
指示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
itemUpdated(item:Object, property:Object = null, oldValue:Object = null, newValue:Object = null):void 通知视图,某个项目已更新。 | ListCollectionView | ||
指示指定的属性是否存在、是否可枚举。 | Object | ||
将排序和滤镜应用到视图。 | ListCollectionView | ||
删除列表中的所有项目。 | ListCollectionView | ||
从 EventDispatcher 对象中删除侦听器。 | ListCollectionView | ||
删除指定索引处的项目并返回该项目。 | ListCollectionView | ||
在指定的索引处放置项目。 | ListCollectionView | ||
设置循环操作动态属性的可用性。 | Object | ||
调用 XMLList 中的每个 XML 对象的 text() 方法,并返回包含结果的 XMLList。 | XMLListCollection | ||
返回与 IList 实现的填充顺序相同的 Array。 | ListCollectionView | ||
通过对 XMLList 中的每个 XML 对象调用 toString() 方法返回 XMLList 的字符串表示形式。 | XMLListCollection | ||
通过对 XMLList 中的每个 XML 对象调用 toXMLString() 方法返回 XMLList 的字符串表示形式。 | XMLListCollection | ||
返回指定对象的原始值。 | Object | ||
检查是否用此 EventDispatcher 对象或其任何始祖为指定事件类型注册了事件侦听器。 | ListCollectionView |
source | 属性 |
source:XMLList
[读写] 此集合的基础 XMLList。XMLListCollection对象不呈现对源 XMLList 对象直接进行的任何更改。始终使用 XMLListCollection 方法修改该集合。
此属性可用作数据绑定的源。修改此属性后,将调度 listChanged
事件。
public function get source():XMLList
public function set source(value:XMLList):void
XMLListCollection | () | 构造函数 |
public function XMLListCollection(source:XMLList = null)
构造函数。
使用指定的 XMLList 对象创建新的 XMLListCollection 对象。
参数source:XMLList (default = null ) — 包含将由 XMLListCollection 对象表示的数据的 XMLList 对象。 |
attribute | () | 方法 |
public function attribute(attributeName:Object):XMLList
调用 XMLList 中的每个 XML 对象的 attribute()
方法,并返回与给定的 attributeName
相匹配的结果 XMLList。
参数
attributeName:Object — 要在 XMLList 的 XML 对象中匹配的属性。 |
XMLList — 与 XML 对象匹配的 XMLList。 |
另请参见
attributes | () | 方法 |
public function attributes():XMLList
调用 XMLList 对象中的每个 XML 对象的 attributes()
方法,并返回每个 XML 对象属性的 XMList。
XMLList — 包含列有属性的结果 XML 对象的 XMLList。 |
另请参见
child | () | 方法 |
public function child(propertyName:Object):XMLList
依次调用 XMLList 中的每个 XML 对象的 child()
方法,并返回包含具有指定属性名称的子项的 XMLList。
参数
propertyName:Object — 要匹配的属性。 |
XMLList — 与原始 XMLList 中 XML 对象的子项相匹配的 XMLList。 |
另请参见
children | () | 方法 |
public function children():XMLList
调用 XMLList 中的每个 XML 对象的 children() 方法,并返回包含结果的 XMLList。
返回XMLList — 原始 XMLList 中 XML 对象的子项的 XMLList。 |
另请参见
copy | () | 方法 |
descendants | () | 方法 |
public function descendants(name:Object = *):XMLList
调用 XMLList 中的每个 XML 对象的 descendants()
方法,并返回包含结果的 XMLList。name
参数会传递给 XML 对象的 descendants()
方法。如果未指定参数,则字符串“*”将传递给 descendants()
方法。
参数
name:Object (default = * ) — 要匹配的元素的名称。 |
XMLList — 原始 XMLList 中 XML 对象的匹配后代(子项、孙项等)的 XMLList。 |
另请参见
elements | () | 方法 |
public function elements(name:String = "*"):XMLList
调用 XMLList 中的每个 XML 对象的 elements()
方法。name
参数会传递给 XML 对象的 elements()
方法。如果未指定参数,则字符串“*”将传递给 elements()
方法。
参数
name:String (default = "* ") — 要匹配的元素的名称。 |
XMLList — 原始 XMLList 中 XML 对象的匹配子项元素的 XMLList。 |
另请参见
text | () | 方法 |
public function text():XMLList
调用 XMLList 中的每个 XML 对象的 text()
方法,并返回包含结果的 XMLList。
XMLList — 包含结果的 XMLList。 |
另请参见
toString | () | 方法 |
override public function toString():String
通过对 XMLList 中的每个 XML 对象调用 toString()
方法返回 XMLList 的字符串表示形式。如果将 XML
类的 prettyPrinting
属性设置为 true
,则 XMLList 中每个 XML 对象的结果将通过回车符进行分隔。相反,如果将 prettyPrinting
设置为 false
,则这些结果只是会连接起来,而不会通过回车符进行分隔
toString()
方法将在包含简单内容的 XML 对象的返回字符串中除去以下内容:开始标签、属性、命名空间声明和结束标签。如果要在包含简单内容的 XML 对象的返回字符串中保留这些内容,请使用 toXMLString()
方法。
String — XMLList 对象的字符串表示形式。 |
另请参见
toXMLString | () | 方法 |
public function toXMLString():String
通过对 XMLList 中的每个 XML 对象调用 toXMLString()
方法返回 XMLList 的字符串表示形式。如果将 XML
类的 prettyPrinting
属性设置为 true
,则 XMLList 中每个 XML 对象的结果将通过回车符进行分隔。相反,如果将 prettyPrinting
设置为 false
,这些结果会连接起来,而不会通过回车符进行分隔。
toXMLString()
方法将在包含简单内容的 XML 对象的返回字符串中保留以下内容:开始标签、属性、命名空间声明和结束标签。如果要在包含简单内容的 XML 对象的返回字符串中去除这些内容,请使用 toString()
方法。
String — XMLList 的字符串表示形式。 |
另请参见