Uses of Class
mgui.datasources.DataField
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 | |
mgui.io.domestic.datasources |
-
Uses of DataField in mgui.datasources
Fields in mgui.datasources with type parameters of type DataField Modifier and Type Field Description protected java.util.ArrayList<DataField>
DataRecordSet. fields
protected java.util.HashMap<java.lang.String,DataField>
DataTable. fields
Methods in mgui.datasources that return DataField Modifier and Type Method Description DataField
DataRecordSet. getField(int f)
DataField
DataRecordSet. getField(java.lang.String name)
Searches for and returns the field namedname
; case insensitive.DataField
DataSet. getField(int f)
DataField
DataTable. getField(java.lang.String name)
Methods in mgui.datasources that return types with arguments of type DataField Modifier and Type Method Description java.util.ArrayList<DataField>
DataTable. getFieldList()
java.util.ArrayList<DataField>
DataRecordSet. getFields()
java.util.HashMap<java.lang.String,DataField>
DataTable. getFields()
Methods in mgui.datasources with parameters of type DataField 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
DataTable. addField(DataField field)
Adds a new field to this table.int
DataField. compareTo(DataField field)
boolean
DataSource. removeDataField(DataTable table, DataField field)
Attempts to remove a field from the specified table in this data source.boolean
DataTable. removeField(DataField field)
Method parameters in mgui.datasources with type arguments of type DataField Modifier and Type Method Description void
DataTable. setFields(java.util.ArrayList<DataField> f)
Constructors in mgui.datasources with parameters of type DataField Constructor Description DataFieldEvent(DataField field, DataFieldEvent.EventCode event_code)
-
Uses of DataField in mgui.datasources.util
Methods in mgui.datasources.util with parameters of type DataField Modifier and Type Method Description static boolean
DataSourceFunctions. equalFields(DataField f1, DataField f2)
Compare fields for equalitystatic boolean
DataSourceFunctions. equalFields(DataField f1, DataField f2, boolean ignore_name)
Compare fields for equalitystatic java.lang.String
DataSourceFunctions. getAddFieldStatement(java.lang.String table, DataField field)
Returns an SQL statement for addingfield
totable
.static java.lang.String
DataSourceFunctions. getAddFieldStatement(java.lang.String table, DataField field, DataSourceDriver driver)
Returns an SQL statement for addingfield
totable
.static java.lang.String
DataSourceFunctions. getChangePrimaryKeyStatement(java.lang.String table, DataField new_field)
Returns an SQL statement to updatetable
by adding or dropping a primary key fornew_field
.static java.lang.String
DataSourceFunctions. getChangePrimaryKeyStatement(java.lang.String table, DataField new_field, DataSourceDriver driver)
Returns an SQL statement to updatetable
by adding or dropping a primary key fornew_field
.static java.lang.String
DataSourceFunctions. getUpdateFieldStatement(java.lang.String table, DataField old_field, DataField new_field)
Returns an SQL statement to updateold_field
to matchnew_field
.static java.lang.String
DataSourceFunctions. getUpdateFieldStatement(java.lang.String table, DataField old_field, DataField new_field, DataSourceDriver driver)
Returns an SQL statement to updateold_field
to matchnew_field
. -
Uses of DataField in mgui.interfaces.datasources
Fields in mgui.interfaces.datasources declared as DataField Modifier and Type Field Description DataField
DataFieldOptions. data_field
Methods in mgui.interfaces.datasources that return DataField Modifier and Type Method Description DataField
EditDataFieldDialogBox. getDataField()
static DataField
EditDataFieldDialogBox. showDialog(javax.swing.JFrame frame, DataFieldOptions options)
Methods in mgui.interfaces.datasources with parameters of type DataField Modifier and Type Method Description void
DataFieldTreeNode. setValues(DataField f)
-
Uses of DataField in mgui.interfaces.shapes
Fields in mgui.interfaces.shapes declared as DataField Modifier and Type Field Description protected DataField
InterfaceShapesPanel. currentLinkField
-
Uses of DataField in mgui.interfaces.shapes.mesh
Fields in mgui.interfaces.shapes.mesh declared as DataField Modifier and Type Field Description protected DataField
InterfaceMeshPanel. currentLinkField
-
Uses of DataField in mgui.io.domestic.datasources
Methods in mgui.io.domestic.datasources that return types with arguments of type DataField Modifier and Type Method Description java.util.ArrayList<java.util.ArrayList<DataField>>
ImportDataTableOptions. getDataFields()
Returns theDataField
objects defined for this options (i.e., corresponding to the specified input files).protected java.util.ArrayList<DataField>
ImportDataTableDialogBox. scanFile(java.io.File file)
Method parameters in mgui.io.domestic.datasources with type arguments of type DataField Modifier and Type Method Description protected int[]
ExportDataTableExcelWriter. getCellTypes(java.util.ArrayList<DataField> fields)
Returns the Excel cell type corresponding to each fieldabstract boolean
ImportDataTableLoader. loadDataTable(java.lang.String name, java.util.ArrayList<DataField> fields, java.util.ArrayList<java.lang.Boolean> include, ProgressUpdater progress_bar)
Loads data from the current data file into a new data table, which will be created indata_source
.boolean
ImportDataTableTextLoader. loadDataTable(java.lang.String name, java.util.ArrayList<DataField> fields, java.util.ArrayList<java.lang.Boolean> include, ProgressUpdater progress_bar)
void
ImportDataTableOptions. setDataFields(java.util.ArrayList<java.util.ArrayList<DataField>> data_fields)
Sets the data fields which define this import; each list corresponds to the associated input file.void
ImportDataTableOptions. setDataFields(java.util.ArrayList<java.util.ArrayList<DataField>> data_fields, java.util.ArrayList<java.util.ArrayList<java.lang.Boolean>> include_fields)
Sets the data fields which define this import; each list corresponds to the associated input file.