Uses of Class
de.fesenmeyer.dbnormalizer.core.configuration.TableConfig

Packages that use TableConfig
de.fesenmeyer.dbnormalizer.core The top-level package of the core logic, which contains the fundamental classes of DBNormalizer. 
de.fesenmeyer.dbnormalizer.core.configuration Contains the classes used for reading and writing configuration data of a session. 
 

Uses of TableConfig in de.fesenmeyer.dbnormalizer.core
 

Methods in de.fesenmeyer.dbnormalizer.core with parameters of type TableConfig
private  void DBNormalizerSession.createAndAddTable2Normalize(TableContainer tableContainer, TableConfig tableConfig, boolean loadFromDB)
          Helper method for creating one table and its FDs based on configuration data and adding this information to the DBNormalizerSession.tables2normalize Map.
 

Uses of TableConfig in de.fesenmeyer.dbnormalizer.core.configuration
 

Fields in de.fesenmeyer.dbnormalizer.core.configuration with type parameters of type TableConfig
private  Collection<TableConfig> TableContainerConfig.tableConfigs
          The table configuration objects.
 

Methods in de.fesenmeyer.dbnormalizer.core.configuration that return types with arguments of type TableConfig
 Collection<TableConfig> TableContainerConfig.getTableConfigs()
          Gets the table configuration objects.
private  Collection<TableConfig> ConfigurationReader.retrieveTableConfigs(Element tableInfoNode, String catalogName, String schemaName)
          Reads the (tables') data from a tableInfo node.
 

Methods in de.fesenmeyer.dbnormalizer.core.configuration with parameters of type TableConfig
private  Element ConfigurationWriter.getTableNode(TableConfig tableConfig)
          Creates a table node from the TableConfig object specified by argument tableConfig.
 

Method parameters in de.fesenmeyer.dbnormalizer.core.configuration with type arguments of type TableConfig
private  Element ConfigurationWriter.getTableInfoNode(Collection<TableConfig> tableConfigs)
          Creates a tableInfo node from the TableConfig objects specified by the tableConfigs argument.
 void TableContainerConfig.setTableConfigs(Collection<TableConfig> tableConfigs)
          Sets the table configuration objects.