Uses of Class
mgui.datasources.DataTable
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.datasources |
This package provides interface objects which allow the user to interface with the
core data source classes.
|
mgui.interfaces.shapes |
This package provides interfaces for user interaction with shapes and shape models.
|
mgui.interfaces.shapes.mesh |
-
Uses of DataTable in mgui.datasources
Fields in mgui.datasources with type parameters of type DataTable Modifier and Type Field Description protected java.util.HashMap<java.lang.String,DataTable>
DataTableSet. table_map
protected java.util.ArrayList<DataTable>
DataSource. temp_tables
Methods in mgui.datasources that return DataTable Modifier and Type Method Description DataTable
DataSource. createTempTable(java.lang.String name)
Creates and returns a temporary table, and adds it to this data source's list of temp tables.DataTable
DataTable. getFilteredByList(java.util.ArrayList<java.lang.Comparable> list, java.lang.String filter_field)
Enumerates the indices of records in this table wherefilter_field
matches an element inlist
.DataTable
DataTableSet. getTable(java.lang.String name)
Methods in mgui.datasources that return types with arguments of type DataTable Modifier and Type Method Description java.util.ArrayList<DataTable>
DataTableSet. getTables()
Methods in mgui.datasources with parameters of type DataTable Modifier and Type Method Description boolean
DataSource. addDataField(DataTable table, DataField field)
Attempts to adds a field to the specified table in this data source.boolean
DataSource. addDataTable(DataTable thisTable)
Attempt to add a table to data source.void
DataTableSet. addTable(DataTable t)
boolean
DataSource. addTempTable(DataTable thisTable)
Attempts to add a temporary table to data source Returns true if successful.int
DataTableSet. findTable(DataTable t)
boolean
DataSource. removeDataField(DataTable table, DataField field)
Attempts to remove a field from the specified table in this data source.boolean
DataSource. removeDataTable(DataTable thisTable)
Removes the specified table from this data source.void
DataTableSet. removeTable(DataTable t)
-
Uses of DataTable in mgui.datasources.util
Methods in mgui.datasources.util with parameters of type DataTable Modifier and Type Method Description 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 DataTable in mgui.interfaces.datasources
Fields in mgui.interfaces.datasources declared as DataTable Modifier and Type Field Description DataTable
DataFieldOptions. parent_table
DataTable
DataTableOptions. table
Methods in mgui.interfaces.datasources that return DataTable Modifier and Type Method Description DataTable
EditDataTableDialog. getDataTable()
static DataTable
EditDataTableDialog. showDialog(javax.swing.JFrame frame, DataTableOptions options)
static DataTable
EditDataTableDialog. showDialog(javax.swing.JFrame frame, DataTableOptions options, java.util.HashMap<java.lang.String,java.lang.String> changed_names)
Constructors in mgui.interfaces.datasources with parameters of type DataTable Constructor Description DataFieldOptions(DataTable parent_table)
DataTableOptions(DataSource source, DataTable table)
-
Uses of DataTable in mgui.interfaces.shapes
Fields in mgui.interfaces.shapes declared as DataTable Modifier and Type Field Description protected DataTable
InterfaceShapesPanel. currentDataTable
-
Uses of DataTable in mgui.interfaces.shapes.mesh
Fields in mgui.interfaces.shapes.mesh declared as DataTable Modifier and Type Field Description protected DataTable
InterfaceMeshPanel. currentDataTable