org.apache.xerces.dom3.bootstrap
Class DOMImplementationListImpl
java.lang.Object
org.apache.xerces.dom3.bootstrap.DOMImplementationListImpl
- DOMImplementationList
public class DOMImplementationListImpl
extends java.lang.Object
This class holds a list of DOMImplementations.
- DOM Level 3
void | add(org.w3c.dom.DOMImplementation domImpl) - Add a
DOMImplementation in the list.
|
int | getLength() - The number of
DOMImplementation s in the list.
|
org.w3c.dom.DOMImplementation | item(int index) - Returns the
index th item in the collection.
|
DOMImplementationListImpl
public DOMImplementationListImpl()
add
public void add(org.w3c.dom.DOMImplementation domImpl)
Add a DOMImplementation
in the list.
getLength
public int getLength()
The number of DOMImplementation
s in the list. The range
of valid child node indices is 0 to length-1
inclusive.
- getLength in interface DOMImplementationList
item
public org.w3c.dom.DOMImplementation item(int index)
Returns the index
th item in the collection. If
index
is greater than or equal to the number of
DOMImplementation
s in the list, this returns
null
.
- item in interface DOMImplementationList
index
- Index into the collection.
- The
DOMImplementation
at the index
th position in the DOMImplementationList
, or
null
if that is not a valid index.
Copyright B) 1999-2004 Apache XML Project. All Rights Reserved.