com.plumtree.openfoundation.util
Interface IXPList

All Superinterfaces:
IXPCollection
All Known Implementing Classes:
XPArrayList

public interface IXPList
extends IXPCollection

Represents a collection of objects that can be individually accessed by index.


Method Summary
 java.lang.Object GetElement(int index)
          When implemented by a class, gets the element at the specified index.
 java.lang.Object SetElement(int index, java.lang.Object _value)
          When implemented by a class, sets the element at the specified index.
 
Methods inherited from interface com.plumtree.openfoundation.util.IXPCollection
Add, AddRange, Clear, Contains, ContainsAll, GetEnumerator, GetSize, Insert, InsertRange, IsEmpty, Remove, RemoveAll, RemoveAt, RetainAll, ToArray, ToArray
 

Method Detail

GetElement

java.lang.Object GetElement(int index)
When implemented by a class, gets the element at the specified index.

Parameters:
index - of the element.
Returns:
Element value.

SetElement

java.lang.Object SetElement(int index,
                            java.lang.Object _value)
When implemented by a class, sets the element at the specified index.

Parameters:
index - of the element.
_value - value to be set at given index.
Returns:
Element value.


Copyright © 2002, 2003, 2004 Plumtree Software Inc. All Rights Reserved.