Package org.apache.xerces.dom
Class DOMImplementationListImpl
- java.lang.Object
-
- org.apache.xerces.dom.DOMImplementationListImpl
-
- All Implemented Interfaces:
org.w3c.dom.DOMImplementationList
public class DOMImplementationListImpl extends java.lang.Object implements org.w3c.dom.DOMImplementationList
This class implements the DOM Level 3 Core interface DOMImplementationList.
INTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Since:
- DOM Level 3 Core
- Author:
- Neil Delima, IBM
-
-
Constructor Summary
Constructors Constructor Description DOMImplementationListImpl()
Construct an empty list of DOMImplementationsDOMImplementationListImpl(java.util.ArrayList params)
Construct a list of DOMImplementations from an ArrayListDOMImplementationListImpl(java.util.Vector params)
Construct a list of DOMImplementations from a Vector
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getLength()
Returns the number of DOMImplementations in the list.org.w3c.dom.DOMImplementation
item(int index)
Returns the indexth item in the collection.
-
-
-
Constructor Detail
-
DOMImplementationListImpl
public DOMImplementationListImpl()
Construct an empty list of DOMImplementations
-
DOMImplementationListImpl
public DOMImplementationListImpl(java.util.ArrayList params)
Construct a list of DOMImplementations from an ArrayList
-
DOMImplementationListImpl
public DOMImplementationListImpl(java.util.Vector params)
Construct a list of DOMImplementations from a Vector
-
-
Method Detail
-
item
public org.w3c.dom.DOMImplementation item(int index)
Returns the indexth item in the collection.- Specified by:
item
in interfaceorg.w3c.dom.DOMImplementationList
- Parameters:
index
- The index of the DOMImplemetation from the list to return.
-
getLength
public int getLength()
Returns the number of DOMImplementations in the list.- Specified by:
getLength
in interfaceorg.w3c.dom.DOMImplementationList
- Returns:
- An integer indicating the number of DOMImplementations.
-
-