oracle.cabo.share.data
Interface DataObject
- All Known Subinterfaces:
- DataSet, KeyedDataObject
Deprecated. since 2.0; use oracle.cabo.ui.data.DataObject
- public interface DataObject
Deprecated class.
- See Also:
DataObject
Method Summary |
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. |
selectChildren
public DataSet selectChildren(java.lang.Object select)
- Deprecated.
- 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.
-
- 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.
- 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()
.
-
- Parameters:
select
- a select criterion, syntax as defined by the