An ordered list of the ASObjects in a content model
Java binding:
package org.w3c.dom.as;
public interface ASObjectList {
public int getLength();
public ASObject item(int index);
}
IDL:
interface ASObjectList {
readonly attribute unsigned long length;
ASObject item(in unsigned long index);
};