Uses of Interface
adams.db.DataProvider
-
Packages that use DataProvider Package Description adams.db adams.flow.transformer adams.gui.scripting -
-
Uses of DataProvider in adams.db
Subinterfaces of DataProvider in adams.db Modifier and Type Interface Description interface
FilteredDataProvider<T extends DataContainer>
Interface for data providers that normally returned the data filtered. -
Uses of DataProvider in adams.flow.transformer
Methods in adams.flow.transformer that return DataProvider Modifier and Type Method Description abstract DataProvider<T>
AbstractDataContainerDbWriter. getDataProvider(T cont)
Returns the data provider to use for storing the container in the database.protected abstract DataProvider<T>
AbstractDataContainerFileImport. getDataProvider()
Returns the report provider to use for writing the reports to the database.protected abstract DataProvider<T>
AbstractDeleteDataContainer. getDataProvider()
Returns the data provider to use for storing the container in the database.DataProvider<T>
DataContainerDbReader. getDataProvider()
Returns the data provider to use for storing the container in the database.DataProvider<T>
DataContainerDbWriter. getDataProvider(T cont)
Returns the data provider to use for storing the container in the database.Methods in adams.flow.transformer with parameters of type DataProvider Modifier and Type Method Description Integer
AbstractDataContainerDbWriter. add(DataProvider provider, T cont)
Adds the container to the database.Integer
DataContainerDbWriter. add(DataProvider provider, T cont)
Adds the container to the database.boolean
AbstractDataContainerDbWriter. exists(DataProvider provider, T cont)
Returns whether the container already exists in the database.boolean
DataContainerDbWriter. exists(DataProvider provider, T cont)
Returns whether the container already exists in the database.T
AbstractDataContainerDbWriter. load(DataProvider provider, T cont)
Loads the container from the database.T
DataContainerDbWriter. load(DataProvider provider, T cont)
Loads the container from the database.boolean
AbstractDataContainerDbWriter. remove(DataProvider provider, T cont)
Removes the container from the database.boolean
DataContainerDbWriter. remove(DataProvider provider, T cont)
Removes the container from the database. -
Uses of DataProvider in adams.gui.scripting
Fields in adams.gui.scripting declared as DataProvider Modifier and Type Field Description protected DataProvider
AbstractScriptlet. m_DataProvider
the data provider to use.Methods in adams.gui.scripting that return DataProvider Modifier and Type Method Description DataProvider
AbstractScriptlet. getDataProvider()
Returns the current data provider.Methods in adams.gui.scripting with parameters of type DataProvider Modifier and Type Method Description void
AbstractScriptlet. setDataProvider(DataProvider value)
Sets the data provider to use for accessing the database.
-