Packagedom.core
Interfacepublic interface DOMImplementationList

Introduced in: DOM 3 Core 

Returned by DOMImplementationSource.getDOMImplementationList() and DOMImplementationRegistry.getDOMImplementationList(). Can be iterated with 0-based index.

See also

MDC - DOMImplementationList
W3C - DOMImplementationList
dom.core.DOMImplementationSource.getDOMImplementationList()


Public Properties
 PropertyDefined By
  DOM 3 Core length : Number
[read-only] The number of DOMImplementations in the list.
DOMImplementationList
Public Methods
 MethodDefined By
  
DOM 3 Core item(index:Number):DOMImplementation
Returns the indexth item in the collection.
DOMImplementationList
Property Detail
DOM 3 Core lengthproperty
length:Number  [read-only]

Introduced in: DOM 3 Core 

The number of DOMImplementations in the list.

The range of valid child node indices is 0 to length-1 inclusive.


Implementation
    public function get length():Number

See also

Method Detail
DOM 3 Core item()method
public function item(index:Number):DOMImplementation

Introduced in: DOM 3 Core 

Returns the indexth item in the collection.

If index is greater than or equal to the number of DOMImplementations in the list, this returns null.

Parameters

index:Number — Index into the collection.

Returns
DOMImplementation — The DOMImplementation at the indexth position in the DOMImplementationList, or null if that is not a valid index.

See also