oracle.cabo.share.data
Class ArrayDataSet
java.lang.Object
|
+--oracle.cabo.share.data.ArrayDataSet
- All Implemented Interfaces:
- DataObject, DataObjectList, DataSet
Deprecated. since 2.0; use oracle.cabo.ui.data.ArrayDataSet
- public class ArrayDataSet
- extends java.lang.Object
- implements DataSet
Deprecated class.
- See Also:
ArrayDataSet
Constructor Summary |
ArrayDataSet(DataObject[] data)
Deprecated. Construct a DataSet with array-based data. |
ArrayDataSet(java.lang.Object[] data, java.lang.Object key)
Deprecated. Construct a DataSet with an array with ordinary objects and a single key. |
Method Summary |
DataObject |
getItem(int index)
Deprecated. Returns the DataObject at the index. |
int |
getLength()
Deprecated. Returns the number of items in the data set. |
DataSet |
selectChildren(java.lang.Object select)
Deprecated. Given a select string, returns an indexed set of DataObjects matching that selection. |
java.lang.Object |
selectValue(java.lang.Object select)
Deprecated. Given a select string, returns the value matching that selection. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ArrayDataSet
public ArrayDataSet(DataObject[] data)
- Deprecated.
- Construct a DataSet with array-based data.
ArrayDataSet
public ArrayDataSet(java.lang.Object[] data,
java.lang.Object key)
- Deprecated.
- Construct a DataSet with an array with ordinary objects and a single key.
getLength
public int getLength()
- Deprecated.
- Returns the number of items in the data set.
-
- Specified by:
getLength
in interface DataObjectList
getItem
public DataObject getItem(int index)
- Deprecated.
- Returns the DataObject at the index.
-
- Specified by:
getItem
in interface DataObjectList
selectChildren
public DataSet selectChildren(java.lang.Object select)
- Deprecated.
- Description copied from interface:
DataObject
- Given a select string, returns an indexed set of DataObjects matching that selection. It is legal to return null if the select string doesn't match any contained data objects.
-
- Specified by:
selectChildren
in interface DataObject
- Following copied from interface:
oracle.cabo.share.data.DataObject
-
- Parameters:
select
- a select criterion, syntax as defined by the implementation of this interface.
selectValue
public java.lang.Object selectValue(java.lang.Object select)
- Deprecated.
- Description copied from interface:
DataObject
- Given a select string, returns the value matching that selection. It is legal to return null if the select string doesn't match anything. There are no requirements that an implementation of this method bear any relation to the implementation of
getDataSet()
.
-
- Specified by:
selectValue
in interface DataObject
- Following copied from interface:
oracle.cabo.share.data.DataObject
-
- Parameters:
select
- a select criterion, syntax as defined by the