org.apache.xerces.dom
Class DOMStringListImpl

java.lang.Object
  |
  +--org.apache.xerces.dom.DOMStringListImpl
All Implemented Interfaces:
org.w3c.dom.DOMStringList

public class DOMStringListImpl
extends java.lang.Object
implements org.w3c.dom.DOMStringList

DOM Level 3 This class implements the DOM Level 3 Core interface DOMStringList.

INTERNAL:

Usage of this class is not supported. It may be altered or removed at any time.

Author:
Neil Delima, IBM

Constructor Summary
DOMStringListImpl()
          Construct an empty list of DOMStringListImpl
DOMStringListImpl(java.util.Vector params)
          Construct an empty list of DOMStringListImpl
 
Method Summary
 void add(java.lang.String param)
          DOM Internal: Add a DOMString to the list.
 boolean contains(java.lang.String param)
          Test if a string is part of this DOMStringList.
 int getLength()
          The number of DOMStrings in the list.
 java.lang.String item(int index)
          Returns the indexth item in the collection.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DOMStringListImpl

public DOMStringListImpl()
Construct an empty list of DOMStringListImpl

DOMStringListImpl

public DOMStringListImpl(java.util.Vector params)
Construct an empty list of DOMStringListImpl
Method Detail

item

public java.lang.String item(int index)
Description copied from interface: org.w3c.dom.DOMStringList
Returns the indexth item in the collection. If index is greater than or equal to the number of DOMStrings in the list, this returns null.
Specified by:
item in interface org.w3c.dom.DOMStringList
See Also:
DOMStringList.item(int)

getLength

public int getLength()
Description copied from interface: org.w3c.dom.DOMStringList
The number of DOMStrings in the list. The range of valid child node indices is 0 to length-1 inclusive.
Specified by:
getLength in interface org.w3c.dom.DOMStringList
See Also:
DOMStringList.getLength()

contains

public boolean contains(java.lang.String param)
Description copied from interface: org.w3c.dom.DOMStringList
Test if a string is part of this DOMStringList.
Specified by:
contains in interface org.w3c.dom.DOMStringList
See Also:
DOMStringList.contains(String)

add

public void add(java.lang.String param)
DOM Internal: Add a DOMString to the list.
Parameters:
domString - A string to add to the list


Copyright © 1999-2005 Apache XML Project. All Rights Reserved.