Uses of Class
mgui.datasources.DataSource
Package | Description |
---|---|
mgui.datasources |
This package contains the core classes for data source functionality.
|
mgui.datasources.util |
Utility classes for operations on data sources.
|
mgui.interfaces |
This package contains all main/abstract interface objects (object which provides user interations)
for ModelGUI.
|
mgui.interfaces.datasources |
This package provides interface objects which allow the user to interface with the
core data source classes.
|
mgui.interfaces.events |
Defines events on interface objects.
|
mgui.interfaces.shapes |
This package provides interfaces for user interaction with shapes and shape models.
|
mgui.interfaces.shapes.mesh | |
mgui.io.domestic.datasources |
-
Uses of DataSource in mgui.datasources
Fields in mgui.datasources declared as DataSource Modifier and Type Field Description protected DataSource
DataTableSet. data_source
protected DataSource
LinkedDataStream. data_source
protected DataSource
DataRecordSet. dataSource
DataSource
DataTable. dataSource
Methods in mgui.datasources that return DataSource Modifier and Type Method Description DataSource
DataQuery. getDataSource()
DataSource
DataSourceItem. getDataSource()
DataSource
DataTable. getDataSource()
DataSource
DataTableSet. getDataSource()
DataSource
LinkedDataStream. getDataSource()
Methods in mgui.datasources with parameters of type DataSource Modifier and Type Method Description void
DataSourceDriver. dropDatabase(DataSource source)
Instructs the database server to drop the specified data source.static LinkedDataStream<?>
LinkedDataStream. getInstance(DataSource data_source, java.lang.String data_table, java.lang.String link_field, boolean cached, java.lang.String name, boolean is_name_map)
Returns an instance ofLinkedDataStream
of the correct generic type, based on the data type of the linked field.void
DataQuery. setDataSource(DataSource source)
void
DataRecordSet. setDataSource(DataSource ds)
void
DataSourceItem. setDataSource(DataSource source)
void
DataTable. setDataSource(DataSource ds)
void
DataTableSet. setDataSource(DataSource ds)
boolean
DataSource. setFromDataSource(DataSource ds)
Sets this data source from an existing source.Constructors in mgui.datasources with parameters of type DataSource Constructor Description DataQuery(java.lang.String name, DataSource source, java.lang.String statement)
DataQuery(DataSource source, java.lang.String statement)
DataRecordSet(DataSource ds)
DataTableSet(DataSource ds)
LinkedDataStream(DataSource data_source, java.lang.String data_table, java.lang.String link_field)
LinkedDataStream(DataSource data_source, java.lang.String data_table, java.lang.String link_field, boolean cached)
LinkedDataStream(DataSource data_source, java.lang.String data_table, java.lang.String link_field, boolean cached, java.lang.String name)
LinkedDataStream(DataSource data_source, java.lang.String data_table, java.lang.String link_field, java.lang.String name)
-
Uses of DataSource in mgui.datasources.util
Methods in mgui.datasources.util that return DataSource Modifier and Type Method Description static DataSource
DataSourceFunctions. createNewDataSource(java.lang.String driver, java.lang.String name, java.lang.String url, java.lang.String login, java.lang.String encrypted_password)
Attempts to creates a new data source, with the given parameters.Methods in mgui.datasources.util with parameters of type DataSource Modifier and Type Method Description static boolean
DataSourceFunctions. dropDataSource(DataSource source)
Drops the specified data source; i.e., deletes it entirely.static java.util.ArrayList<java.lang.String>
DataSourceFunctions. getEditStatements(DataSource source, DataTable old_table, DataTable new_table, java.util.HashMap<java.lang.String,java.lang.String> changed_names)
Generates a set of SQL statements which transformold_table
intonew_table
. -
Uses of DataSource in mgui.interfaces
Fields in mgui.interfaces with type parameters of type DataSource Modifier and Type Field Description protected java.util.ArrayList<DataSource>
InterfaceWorkspace. dataSources
Methods in mgui.interfaces that return DataSource Modifier and Type Method Description DataSource
InterfaceWorkspace. getDataSource(java.lang.String ds)
Methods in mgui.interfaces that return types with arguments of type DataSource Modifier and Type Method Description java.util.ArrayList<DataSource>
InterfaceWorkspace. getConnectedDataSources()
Returns a list of all connected data sources associated with this workspace.static java.util.ArrayList<DataSource>
InterfaceEnvironment. getDataSources()
Returns a list of the data sources loaded at initjava.util.ArrayList<DataSource>
InterfaceWorkspace. getDataSources()
Returns a list of all data sources associated with this workspace.Methods in mgui.interfaces with parameters of type DataSource Modifier and Type Method Description boolean
InterfaceWorkspace. addDataSource(DataSource ds)
void
InterfaceWorkspace. removeDataSource(DataSource ds)
-
Uses of DataSource in mgui.interfaces.datasources
Fields in mgui.interfaces.datasources declared as DataSource Modifier and Type Field Description DataSource
DataSourceOptions. source
DataSource
DataTableOptions. source
Methods in mgui.interfaces.datasources that return DataSource Modifier and Type Method Description static DataSource
DataSourceDialogBox. showPanel(DataSourceOptions options)
Constructors in mgui.interfaces.datasources with parameters of type DataSource Constructor Description DataSourceOptions(DataSource ds)
DataTableModel(DataSource ds, DataSourceItem item)
DataTableOptions(DataSource source)
DataTableOptions(DataSource source, DataTable table)
-
Uses of DataSource in mgui.interfaces.events
Constructors in mgui.interfaces.events with parameters of type DataSource Constructor Description DataSourceEvent(DataSource d)
-
Uses of DataSource in mgui.interfaces.shapes
Fields in mgui.interfaces.shapes declared as DataSource Modifier and Type Field Description protected DataSource
InterfaceShapesPanel. currentDataSource
-
Uses of DataSource in mgui.interfaces.shapes.mesh
Fields in mgui.interfaces.shapes.mesh declared as DataSource Modifier and Type Field Description protected DataSource
InterfaceMeshPanel. currentDataSource
-
Uses of DataSource in mgui.io.domestic.datasources
Fields in mgui.io.domestic.datasources declared as DataSource Modifier and Type Field Description DataSource
DataSourceOutOptions. data_source
protected DataSource
DataSourceXMLHandler. data_source
DataSource
ExportDataTableOptions. data_source
protected DataSource
ImportDataTableLoader. data_source
Methods in mgui.io.domestic.datasources that return DataSource Modifier and Type Method Description DataSource
DataSourceXMLHandler. getDataSource()
DataSource
ImportDataTableOptions. getDataSource()
Methods in mgui.io.domestic.datasources with parameters of type DataSource Modifier and Type Method Description void
ImportDataTableLoader. setDataSource(DataSource source)
Sets the current DataSource for this loader.void
ImportDataTableOptions. setDataSource(DataSource source)
boolean
DataSourceWriter. writeDataSource(DataSource source)
Writes this data source to a text file.boolean
DataSourceWriter. writeDataSourceAsXml(DataSource source)
Constructors in mgui.io.domestic.datasources with parameters of type DataSource Constructor Description DataSourceOutOptions(DataSource source)