Uses of Class
org.jdesktop.dataset.DataRow

Packages that use DataRow
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.adapter   
org.jdesktop.dataset.event   
org.jdesktop.dataset.provider.sql   
 

Uses of DataRow in org.jdesktop.dataset
 

Fields in org.jdesktop.dataset with type parameters of type DataRow
protected  java.util.List<DataRow> DataTable.rows
          The list of DataRows in this DataTable.
 

Methods in org.jdesktop.dataset that return DataRow
 DataRow DataTable.appendRow()
          Append a new DataRow to this DataTable, and return the newly appended Row.
 DataRow DataRelationTable.appendRow()
          Appends a row to the child table, retrieved by relation.getChildColumn().getTable().
 DataRow DataTable.appendRowNoEvent()
          Appends a new DataRow to this DataTable, and returns the newly appended row.
 DataRow DataTable.getRow(int index)
           
 

Methods in org.jdesktop.dataset that return types with arguments of type DataRow
 java.util.List<DataRow> DataSet.filterRows(java.util.List<DataRow> rows, DataSelector ds)
          Returns a list of rows that match a given selector; convenience method.
 java.util.List<DataRow> DataTable.getRows()
           
 java.util.List<DataRow> DataRelation.getRows(DataRow parentRow)
          Given a DataRow from the parent DataTable, return a list of related DataRows from the child DataTable.
 java.util.List<DataRow> DataRelation.getRows(DataRow[] parentRows)
          Given an array of DataRows, produce the union of the results for each DataRow from the child DataTable
 java.util.List<DataRow> DataRelation.getRows(int parentRowIndex)
          Given the index of a row in the parent DataTable, produce a corrosponding list of related rows from the child DataTable
 java.util.List<DataRow> DataRelation.getRows(int[] parentRowIndices)
          Given an array if parent row indices, produce the union of the results for each index from the child DataTable
 java.util.List<DataRow> DataRelation.getRows(java.util.List<java.lang.Integer> parentRowIndices)
          Given a List of indices, produce the union of the results for each index from the child DataTable
 java.util.List<DataRow> DataSet.getRows(java.lang.String path)
          TODO
 

Methods in org.jdesktop.dataset with parameters of type DataRow
 void DataTable.deleteRow(DataRow row)
          Doesn't actually remove the row, just marks it for deletion.
 void DataTable.discardRow(DataRow row)
          Actually removes the row from the DataTable.
 java.util.List<DataRow> DataRelation.getRows(DataRow parentRow)
          Given a DataRow from the parent DataTable, return a list of related DataRows from the child DataTable.
 java.util.List<DataRow> DataRelation.getRows(DataRow[] parentRows)
          Given an array of DataRows, produce the union of the results for each DataRow from the child DataTable
 java.lang.Object DataTable.getValue(DataRow row, DataColumn col)
          Retrieves the current value for the given row and column.
 java.lang.Object DataColumn.getValueForRow(DataRow row)
           
protected  int DataTable.indexOfRow(DataRow row)
          Internal method that returns the int index of the given DataRow.
 void DataSelector.setRowIndex(DataRow row)
           
 

Method parameters in org.jdesktop.dataset with type arguments of type DataRow
 java.util.List<DataRow> DataSet.filterRows(java.util.List<DataRow> rows, DataSelector ds)
          Returns a list of rows that match a given selector; convenience method.
 

Uses of DataRow in org.jdesktop.dataset.adapter
 

Methods in org.jdesktop.dataset.adapter with parameters of type DataRow
protected  void TabularDataModelAdapter.fireRowChanged(DataRow row)
           
 

Uses of DataRow in org.jdesktop.dataset.event
 

Methods in org.jdesktop.dataset.event that return DataRow
 DataRow TableChangeEvent.getRowAffected()
          Returns the DataRow affected by this event, or null if no row was involved.
 

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

Uses of DataRow in org.jdesktop.dataset.provider.sql
 

Methods in org.jdesktop.dataset.provider.sql with parameters of type DataRow
protected  java.sql.PreparedStatement TableCommand.getDeleteStatement(JDBCDataConnection conn, DataRow row)
           
protected  java.sql.PreparedStatement SQLCommand.getDeleteStatement(JDBCDataConnection conn, DataRow row)
           
protected abstract  java.sql.PreparedStatement AbstractSqlCommand.getDeleteStatement(JDBCDataConnection conn, DataRow row)
           
protected  java.sql.PreparedStatement TableCommand.getInsertStatement(JDBCDataConnection conn, DataRow row)
           
protected  java.sql.PreparedStatement SQLCommand.getInsertStatement(JDBCDataConnection conn, DataRow row)
           
protected abstract  java.sql.PreparedStatement AbstractSqlCommand.getInsertStatement(JDBCDataConnection conn, DataRow row)
           
protected  java.sql.PreparedStatement TableCommand.getUpdateStatement(JDBCDataConnection conn, DataRow row)
           
protected  java.sql.PreparedStatement SQLCommand.getUpdateStatement(JDBCDataConnection conn, DataRow row)
           
protected abstract  java.sql.PreparedStatement AbstractSqlCommand.getUpdateStatement(JDBCDataConnection conn, DataRow row)
           
 



Copyright © 2005 Sun Microsystems All Rights Reserved.