|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Class com.sun.data.provider.impl.AbstractDataProvider extends java.lang.Object implements Serializable |
| Serialized Fields |
FieldKey[] fieldKeys
FieldKeys in this DataProvider
DataListener[] dpListeners
Array of DataListener instances registered for
this DataProvider.
| Class com.sun.data.provider.impl.AbstractTableDataProvider extends AbstractDataProvider implements Serializable |
| Serialized Fields |
java.util.ArrayList rowKeyList
java.util.HashMap rowKeyMap
RowKey cursorRow
TableCursorListener[] tcListeners
Array of TableCursorListener instances registered for
this TableDataProvider.
| Class com.sun.data.provider.impl.BasicTransactionalDataProvider extends AbstractDataProvider implements Serializable |
| Serialized Fields |
DataProvider provider
java.util.HashMap changeMap
DataListener ears
| Class com.sun.data.provider.impl.BasicTransactionalTableDataProvider extends AbstractTableDataProvider implements Serializable |
| Serialized Fields |
TableDataProvider provider
java.util.HashMap changedRowMap
com.sun.data.provider.impl.BasicTransactionalTableDataProvider.DataEars dataEars
com.sun.data.provider.impl.BasicTransactionalTableDataProvider.CursorEars cursorEars
| Class com.sun.data.provider.impl.CachedRowSetDataProvider extends AbstractTableDataProvider implements Serializable |
| Serialized Fields |
FieldKey[] fieldKeys
The array of FieldKeys that correspond to the columns
represented in the ResultSetMetaData for this
request.
java.util.Map fieldKeysMap
Map of the FieldKeys that correspond to the columns
represented in the ResultSetMetaData for this
request, keyed (case-insensitive) by column name.
javax.sql.rowset.CachedRowSet cachedRowSet
The CachedRowSet that we are wrapping.
boolean onInsertRow
indicator if we are on the inserted row. Note: in the semantics of dataprovider, this would be called onAppendRow. FIXME: It seems like there should be a CachedRowSet method to detect this, but I don't see it.
com.sun.data.provider.impl.CachedRowSetDataProvider.RowSetPropertyChangeListener propertyChangeListener
PropertyChangeListener registered with the CachedRowSetX.
javax.sql.RowSetListener rowSetListener
PropertyChangeListener registered with the CachedRowSetX.
RowKey cursorRow
| Class com.sun.data.provider.impl.CompareFilterCriteria extends FilterCriteria implements Serializable |
| Serialized Fields |
java.util.Locale compareLocale
boolean matchEqualTo
boolean matchLessThan
boolean matchGreaterThan
FieldKey fieldKey
java.lang.Object compareValue
| Class com.sun.data.provider.DataProviderException extends java.lang.RuntimeException implements Serializable |
| Class com.sun.data.provider.impl.FieldIdSortCriteria extends SortCriteria implements Serializable |
| Serialized Fields |
java.lang.String fieldId
| Class com.sun.data.provider.FieldKey extends java.lang.Object implements Serializable |
| Serialized Fields |
java.lang.String fieldId
java.lang.String displayName
| Class com.sun.data.provider.impl.FieldKeySortCriteria extends SortCriteria implements Serializable |
| Serialized Fields |
FieldKey fieldKey
| Class com.sun.data.provider.FilterCriteria extends java.lang.Object implements Serializable |
| Serialized Fields |
java.lang.String displayName
boolean include
| Class com.sun.data.provider.impl.FilteredTableDataProvider extends AbstractTableDataProvider implements Serializable |
| Serialized Fields |
TableDataProvider provider
TableDataFilter filter
com.sun.data.provider.impl.FilteredTableDataProvider.DataEars dataEars
com.sun.data.provider.impl.FilteredTableDataProvider.FilterMap filterMap
| Class com.sun.data.provider.impl.IndexRowKey extends RowKey implements Serializable |
| Serialized Fields |
int index
| Class com.sun.data.provider.impl.ListDataProvider extends AbstractTableDataProvider implements Serializable |
| Serialized Fields |
java.util.List list
List (ArrayList by default)
| Class com.sun.data.provider.impl.MapDataProvider extends AbstractDataProvider implements Serializable |
| Serialized Fields |
java.util.Map map
Map, initially a HashMap
| Class com.sun.data.provider.impl.MapDataProvider.MapFieldKey extends FieldKey implements Serializable |
| Serialized Fields |
java.lang.Object mapKey
| Class com.sun.data.provider.impl.MethodResultDataProvider extends java.lang.Object implements Serializable |
| Serialization Methods |
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
| Serialized Fields |
java.lang.Object dataClassInstance
java.lang.Object[] dataMethodArgs
ObjectDataProvider resultProvider
| Class com.sun.data.provider.impl.MethodResultTableDataProvider extends java.lang.Object implements Serializable |
| Serialization Methods |
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
| Serialized Fields |
java.lang.Object dataClassInstance
java.lang.Class collectionElementType
java.lang.Object[] dataMethodArgs
java.lang.Object resultObject
ObjectListDataProvider resultProvider
| Class com.sun.data.provider.impl.NestedFilterCriteria extends FilterCriteria implements Serializable |
| Serialized Fields |
FilterCriteria[] filterCriteria
boolean matchAll
true)
| Class com.sun.data.provider.impl.ObjectArrayDataProvider extends AbstractTableDataProvider implements Serializable |
| Serialized Fields |
java.lang.Object[] array
Storage for the array being wrapped by this data provider.
boolean includeFields
Storage for the includeFields property. By default,
this is true.
java.lang.Class objectType
Storage for the object type contained in this data provider.
| Class com.sun.data.provider.impl.ObjectArrayRowKey extends RowKey implements Serializable |
| Serialized Fields |
java.lang.Object[] objects
| Class com.sun.data.provider.impl.ObjectDataProvider extends AbstractDataProvider implements Serializable |
| Serialized Fields |
boolean includeFields
java.lang.Object object
The object being wrapped by this
DataProvider.
NOTE about Serializable: This class wraps access to any Java Object.
The Object can be swapped out using the setObject(Object)
method. For this class to remain Serializable, the contained Object
must also be Serializable.
| Class com.sun.data.provider.impl.ObjectListDataProvider extends AbstractTableDataProvider implements Serializable |
| Serialized Fields |
java.util.List appends
List of object instances to be appended to the underlying
list when changes are committed. The RowKey values
that correspond to these rows will have row index values starting
with the number of rows in the underlying list. That is, if there
are five rows in the list already, the first appended row will have
an index of five, the second will have a row index of six, and
so on.
java.util.Set deletes
Set of RowKeys of rows that have been marked to be
deleted. An Iterator over this set will return
the corresponding RowKeys in ascending order.
boolean includeFields
Storage for the includeFields property. By default,
this is true.
java.util.List list
Storage for the internal list of objects wrapped by this data provider.
java.lang.Class objectType
Storage for the object type contained in this data provider.
java.util.Map updates
Map keyed by RowKey, whose elements are themselves
Maps keyed by FieldKey of each field for which an
updated value has been cached.
boolean userResizable
Storage for the userResizable property (default value is
true).
| Class com.sun.data.provider.impl.ObjectRowKey extends RowKey implements Serializable |
| Serialized Fields |
java.lang.Object object
| Class com.sun.data.provider.impl.RegexFilterCriteria extends FilterCriteria implements Serializable |
| Serialized Fields |
FieldKey fieldKey
FieldKey
java.util.regex.Pattern pattern
Pattern
| Class com.sun.data.provider.RowKey extends java.lang.Object implements Serializable |
| Serialized Fields |
java.lang.String rowId
| Class com.sun.data.provider.SortCriteria extends java.lang.Object implements Serializable |
| Serialized Fields |
java.lang.String displayName
boolean ascending
| Class com.sun.data.provider.TableCursorVetoException extends DataProviderException implements Serializable |
| Class com.sun.data.provider.impl.TableRowDataProvider extends AbstractDataProvider implements Serializable |
| Serialized Fields |
com.sun.data.provider.impl.TableRowDataProvider.DataEars dataEars
TableDataProvider provider
RowKey tableRow
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||