Uses of Class
org.jdesktop.dataset.DataRow.DataRowStatus

Packages that use DataRow.DataRowStatus
org.jdesktop.dataset The dataset package is the entrypoint to the DataSet API, and includes the major public classes for working with tabular data in JDNC, including disconnected SQL results. 
org.jdesktop.dataset.event   
 

Uses of DataRow.DataRowStatus in org.jdesktop.dataset
 

Methods in org.jdesktop.dataset that return DataRow.DataRowStatus
protected  DataRow.DataRowStatus DataRow.deriveRowStatus()
          Used internally to determine the row's current status, called after a cell's value is changed.
 DataRow.DataRowStatus DataRow.getStatus()
          Returns the current row status.
static DataRow.DataRowStatus DataRow.DataRowStatus.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataRow.DataRowStatus[] DataRow.DataRowStatus.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.jdesktop.dataset with parameters of type DataRow.DataRowStatus
 void DataRow.setStatus(DataRow.DataRowStatus status)
          Changes the row's status; a status change event will be broadcast if the status is different from the current status.
 

Uses of DataRow.DataRowStatus in org.jdesktop.dataset.event
 

Methods in org.jdesktop.dataset.event that return DataRow.DataRowStatus
 DataRow.DataRowStatus RowChangeEvent.getPriorRowStatus()
          On a row status change, the row status before the change.
 

Methods in org.jdesktop.dataset.event with parameters of type DataRow.DataRowStatus
static RowChangeEvent RowChangeEvent.newCellChangedEvent(DataRow source, DataColumn col, java.lang.Object priorValue, DataRow.DataRowStatus priorStatus)
           
static RowChangeEvent RowChangeEvent.newRowStatusChangeEvent(DataRow source, DataRow.DataRowStatus priorStatus)
           
 



Copyright © 2005 Sun Microsystems All Rights Reserved.