Uses of Class
de.fesenmeyer.dbnormalizer.core.TableColumn

Packages that use TableColumn
de.fesenmeyer.dbnormalizer.core The top-level package of the core logic, which contains the fundamental classes of DBNormalizer. 
de.fesenmeyer.dbnormalizer.core.algorithms Package which provides the several algorithms implemented by DBNormalizer. 
de.fesenmeyer.dbnormalizer.core.dbaccess Package containing database access code and utility methods. 
de.fesenmeyer.dbnormalizer.gui The top-level package of the GUI, which is implemented in Swing. 
 

Uses of TableColumn in de.fesenmeyer.dbnormalizer.core
 

Fields in de.fesenmeyer.dbnormalizer.core with type parameters of type TableColumn
private  Map<String,TableColumn> Table.columnInfos
          A map containing tableColumn information for each attribute.
 

Methods in de.fesenmeyer.dbnormalizer.core that return TableColumn
 TableColumn TableColumn.copy()
          Creates a copy of this TableColumn.
 TableColumn Table.getColumnInfo(String colName)
          Gets TableColumn information for the column (attribute) specified by the colName argument.
 

Methods in de.fesenmeyer.dbnormalizer.core that return types with arguments of type TableColumn
 Collection<TableColumn> Table.getColumnInfos()
          Gets TableColumn information for each of the table's columns (attributes).
 

Methods in de.fesenmeyer.dbnormalizer.core with parameters of type TableColumn
 void Table.addColumnInfo(String colName, TableColumn col)
          Adds the TableColumn information specified by argument col for the column (attribute) specified by argument colName.
 int TableColumn.compareTo(TableColumn col)
          Compares this column to another column based on their names.
 

Uses of TableColumn in de.fesenmeyer.dbnormalizer.core.algorithms
 

Methods in de.fesenmeyer.dbnormalizer.core.algorithms with parameters of type TableColumn
private  StringBuffer NormalizationScriptBuilder.buildTableColumnDef(Table table, TableColumn col)
          Builds a table column definition for the column given by argument col
 

Uses of TableColumn in de.fesenmeyer.dbnormalizer.core.dbaccess
 

Methods in de.fesenmeyer.dbnormalizer.core.dbaccess that return types with arguments of type TableColumn
static Collection<TableColumn> DatabaseMetadataUtil.getTableColumnInfos(DBNormalizerSession session, String catalogName, String schemaName, String tableName)
          Gets TableColumn objects for a table specified by catalog, schema and name.
 

Uses of TableColumn in de.fesenmeyer.dbnormalizer.gui
 

Fields in de.fesenmeyer.dbnormalizer.gui with type parameters of type TableColumn
private  List<TableColumn> TableColumnInfoPanel.TableColumnInfoTableModel.tableCols
           
 

Methods in de.fesenmeyer.dbnormalizer.gui that return types with arguments of type TableColumn
 List<TableColumn> TableColumnInfoPanel.TableColumnInfoTableModel.getTableCols()
           
 

Method parameters in de.fesenmeyer.dbnormalizer.gui with type arguments of type TableColumn
 void TableColumnInfoPanel.setTableCols(Collection<TableColumn> tableCols)
           
 void TableColumnInfoPanel.TableColumnInfoTableModel.setTableCols(List<TableColumn> tableCols)