org.apache.xerces.dom
Class DOMStringListImpl

java.lang.Object
  extended by org.apache.xerces.dom.DOMStringListImpl
All Implemented Interfaces:
DOMStringList

public class DOMStringListImpl
extends java.lang.Object
implements DOMStringList

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

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
equals, 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: 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 DOMStringList
Parameters:
index - Index into the collection.
Returns:
The DOMString at the indexth position in the DOMStringList, or null if that is not a valid index.
See Also:
DOMStringList.item(int)

getLength

public int getLength()
Description copied from interface: 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 DOMStringList
See Also:
DOMStringList.getLength()

contains

public boolean contains(java.lang.String param)
Description copied from interface: DOMStringList
Test if a string is part of this DOMStringList.

Specified by:
contains in interface DOMStringList
Parameters:
param - The string to look for.
Returns:
true if the string has been found, false otherwise.
See Also:
DOMStringList.contains(String)

add

public void add(java.lang.String param)
DOM Internal: Add a DOMString to the list.

Parameters:
param - A string to add to the list