This class implements the DOM Level 3 Core interface DOMImplementationList.
Construct an empty list of DOMImplementations fImplementations = new Vector();
fImplementations = new Vector();
Construct an empty list of DOMImplementations fImplementations = params;
fImplementations = params;
Returns the number of DOMImplementations in the list.returnAn integer indicating the number of DOMImplementations. return fImplementations.size();
return fImplementations.size();
Returns the indexth item in the collection.paramindex The index of the DOMImplemetation from the list to return. try { return (DOMImplementation) fImplementations.elementAt(index); } catch (ArrayIndexOutOfBoundsException e) { return null; }
try { return (DOMImplementation) fImplementations.elementAt(index); } catch (ArrayIndexOutOfBoundsException e) { return null; }