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. fieldsprotected java.util.HashMap<java.lang.String,DataField>DataTable. fieldsMethods in mgui.datasources that return DataField Modifier and Type Method Description DataFieldDataRecordSet. getField(int f)DataFieldDataRecordSet. getField(java.lang.String name)Searches for and returns the field namedname; case insensitive.DataFieldDataSet. getField(int f)DataFieldDataTable. 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 booleanDataSource. addDataField(DataTable table, DataField field)Attempts to adds a field to the specified table in this data source.booleanDataTable. addField(DataField field)Adds a new field to this table.intDataField. compareTo(DataField field)booleanDataSource. removeDataField(DataTable table, DataField field)Attempts to remove a field from the specified table in this data source.booleanDataTable. removeField(DataField field)Method parameters in mgui.datasources with type arguments of type DataField Modifier and Type Method Description voidDataTable. 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 booleanDataSourceFunctions. equalFields(DataField f1, DataField f2)Compare fields for equalitystatic booleanDataSourceFunctions. equalFields(DataField f1, DataField f2, boolean ignore_name)Compare fields for equalitystatic java.lang.StringDataSourceFunctions. getAddFieldStatement(java.lang.String table, DataField field)Returns an SQL statement for addingfieldtotable.static java.lang.StringDataSourceFunctions. getAddFieldStatement(java.lang.String table, DataField field, DataSourceDriver driver)Returns an SQL statement for addingfieldtotable.static java.lang.StringDataSourceFunctions. getChangePrimaryKeyStatement(java.lang.String table, DataField new_field)Returns an SQL statement to updatetableby adding or dropping a primary key fornew_field.static java.lang.StringDataSourceFunctions. getChangePrimaryKeyStatement(java.lang.String table, DataField new_field, DataSourceDriver driver)Returns an SQL statement to updatetableby adding or dropping a primary key fornew_field.static java.lang.StringDataSourceFunctions. getUpdateFieldStatement(java.lang.String table, DataField old_field, DataField new_field)Returns an SQL statement to updateold_fieldto matchnew_field.static java.lang.StringDataSourceFunctions. getUpdateFieldStatement(java.lang.String table, DataField old_field, DataField new_field, DataSourceDriver driver)Returns an SQL statement to updateold_fieldto matchnew_field. -
Uses of DataField in mgui.interfaces.datasources
Fields in mgui.interfaces.datasources declared as DataField Modifier and Type Field Description DataFieldDataFieldOptions. data_fieldMethods in mgui.interfaces.datasources that return DataField Modifier and Type Method Description DataFieldEditDataFieldDialogBox. getDataField()static DataFieldEditDataFieldDialogBox. showDialog(javax.swing.JFrame frame, DataFieldOptions options)Methods in mgui.interfaces.datasources with parameters of type DataField Modifier and Type Method Description voidDataFieldTreeNode. setValues(DataField f) -
Uses of DataField in mgui.interfaces.shapes
Fields in mgui.interfaces.shapes declared as DataField Modifier and Type Field Description protected DataFieldInterfaceShapesPanel. currentLinkField -
Uses of DataField in mgui.interfaces.shapes.mesh
Fields in mgui.interfaces.shapes.mesh declared as DataField Modifier and Type Field Description protected DataFieldInterfaceMeshPanel. 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 theDataFieldobjects 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 booleanImportDataTableLoader. 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.booleanImportDataTableTextLoader. loadDataTable(java.lang.String name, java.util.ArrayList<DataField> fields, java.util.ArrayList<java.lang.Boolean> include, ProgressUpdater progress_bar)voidImportDataTableOptions. 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.voidImportDataTableOptions. 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.