org.apache.xerces.impl.xs.util
Class NSItemListImpl

java.lang.Object
  extended by org.apache.xerces.impl.xs.util.NSItemListImpl
All Implemented Interfaces:
XSNamespaceItemList

public class NSItemListImpl
extends java.lang.Object
implements XSNamespaceItemList

Containts a list of Object's.

Version:
$Id: NSItemListImpl.java 446723 2006-09-15 20:37:45Z mrglavas $
Author:
Sandy Gao, IBM

Constructor Summary
NSItemListImpl(java.util.Vector v)
           
NSItemListImpl(XSNamespaceItem[] array, int length)
          Construct an XSNamespaceItemList implementation
 
Method Summary
 int getLength()
          The number of Objects in the list.
 XSNamespaceItem item(int index)
          Returns the indexth item in the collection or null if index is greater than or equal to the number of objects in the list.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NSItemListImpl

public NSItemListImpl(java.util.Vector v)

NSItemListImpl

public NSItemListImpl(XSNamespaceItem[] array,
                      int length)
Construct an XSNamespaceItemList implementation

Parameters:
array - the data array
length - the number of elements
Method Detail

getLength

public int getLength()
The number of Objects in the list. The range of valid child node indices is 0 to length-1 inclusive.

Specified by:
getLength in interface XSNamespaceItemList

item

public XSNamespaceItem item(int index)
Description copied from interface: XSNamespaceItemList
Returns the indexth item in the collection or null if index is greater than or equal to the number of objects in the list. The index starts at 0.

Specified by:
item in interface XSNamespaceItemList
Parameters:
index - index into the collection.
Returns:
The XSNamespaceItem at the indexth position in the XSNamespaceItemList, or null if the index specified is not valid.