Uses of Class
org.jdesktop.dataset.DataTable

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

Uses of DataTable in org.jdesktop.dataset
 

Subclasses of DataTable in org.jdesktop.dataset
 class DataRelationTable
           
 

Methods in org.jdesktop.dataset that return DataTable
 DataTable DataSet.createTable()
          Creates a new DataTable with an automatically-generated name, and adds it to this DataSet; the table will belong to this DataSet.
 DataTable DataSet.createTable(java.lang.String name)
          Creates a new, named DataTable, and adds it to this DataSet; the table will belong to this DataSet.
 DataTable DataSelector.getDataTable()
          Deprecated. Use getTable() instead
 DataTable DataRelationTable.getParentTable()
           
 DataTable DataSelector.getTable()
           
 DataTable DataRow.getTable()
          Returns the DataTable that owns this row.
 DataTable DataColumn.getTable()
          Returns the DataTable that this column belongs to.
 DataTable DataSet.getTable(java.lang.String tableName)
          Looks up a DataTable in this DataSet, by name.
 

Methods in org.jdesktop.dataset that return types with arguments of type DataTable
 java.util.List<DataTable> DataSet.getTables()
          Returns a List of the DataTables in this DataSet.
 

Methods in org.jdesktop.dataset with parameters of type DataTable
protected abstract  LoadTask DataProvider.createLoadTask(DataTable[] tables)
          Creates a Task that loads data from the data store into one or more DataTables.
protected abstract  SaveTask DataProvider.createSaveTask(DataTable[] tables)
          Creates a task that saves data from an array of DataTables to the data store.
 void DataSet.dropTable(DataTable table)
          Removes a given DataTable from this DataSet.
 void DataProvider.load(DataTable t)
           
 void DataProvider.load(DataTable[] tables)
           
 void DataProvider.loadAndWait(DataTable t)
           
 void DataProvider.loadAndWait(DataTable[] tables)
           
 void DataProvider.save(DataTable t)
           
 void DataProvider.save(DataTable[] tables)
           
 void DataProvider.saveAndWait(DataTable t)
           
 void DataProvider.saveAndWait(DataTable[] tables)
           
 void DataRelationTable.setParentTable(DataTable parent)
           
 

Constructors in org.jdesktop.dataset with parameters of type DataTable
DataColumn(DataTable table)
          Create a new DataColumn.
DataRow(DataTable table)
          Create a new DataRow.
DataSelector(DataTable table)
          Creates a new instance of DataSelector
 

Uses of DataTable in org.jdesktop.dataset.adapter
 

Methods in org.jdesktop.dataset.adapter that return DataTable
 DataTable TabularDataModelAdapter.getDataTable()
           
 

Constructors in org.jdesktop.dataset.adapter with parameters of type DataTable
MetaDataProviderAdapter(DataTable table)
          Creates a new instance of MetaDataProviderAdapter
TabularDataModelAdapter(DataTable table)
          Creates a new instance of TabularDataModelAdapter
 

Uses of DataTable in org.jdesktop.dataset.event
 

Methods in org.jdesktop.dataset.event with parameters of type DataTable
static TableChangeEvent TableChangeEvent.newColumnAddedEvent(DataTable source, DataColumn col)
           
static TableChangeEvent TableChangeEvent.newColumnRemovedEvent(DataTable source, DataColumn col)
           
static TableChangeEvent TableChangeEvent.newLoadCompleteEvent(DataTable source)
           
static TableChangeEvent TableChangeEvent.newLoadStartEvent(DataTable source)
           
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 TableChangeEvent TableChangeEvent.newSaveCompleteEvent(DataTable source)
           
static TableChangeEvent TableChangeEvent.newSaveStartEvent(DataTable source)
           
static TableChangeEvent TableChangeEvent.newTableClearedEvent(DataTable source)
           
 

Uses of DataTable in org.jdesktop.dataset.provider
 

Fields in org.jdesktop.dataset.provider declared as DataTable
 DataTable LoadTask.LoadItem.table
           
 

Methods in org.jdesktop.dataset.provider with parameters of type DataTable
protected abstract  void LoadTask.readData(DataTable[] tables)
          Subclasses must implement this method to read the data from the data store and place it in a data structure which is disconnected from the DataTable.
protected abstract  void SaveTask.saveData(DataTable[] tables)
           
 

Constructors in org.jdesktop.dataset.provider with parameters of type DataTable
LoadTask.LoadItem(DataTable table, E data)
           
LoadTask(DataTable[] tables)
          Creates a new LoadTask.
SaveTask(DataTable[] tables)
           
 

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

Methods in org.jdesktop.dataset.provider.sql with parameters of type DataTable
protected  LoadTask WebRowSetDataProvider.createLoadTask(DataTable[] tables)
           
protected  LoadTask SQLDataProvider.createLoadTask(DataTable[] tables)
           
protected  SaveTask WebRowSetDataProvider.createSaveTask(DataTable[] tables)
           
protected  SaveTask SQLDataProvider.createSaveTask(DataTable[] tables)
           
 



Copyright © 2005 Sun Microsystems All Rights Reserved.