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

Packages that use AttributeSetConfig
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 AttributeSetConfig in de.fesenmeyer.dbnormalizer.core
 

Methods in de.fesenmeyer.dbnormalizer.core that return AttributeSetConfig
private  AttributeSetConfig DBNormalizerSession.createAttributeSetConfig(AttributeStringSet attributes)
           
 

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

Fields in de.fesenmeyer.dbnormalizer.core.configuration declared as AttributeSetConfig
private  AttributeSetConfig TableConfig.attributeSetConfig
          The attributes.
private  AttributeSetConfig FDConfig.lhs
          The LHS of the FD.
private  AttributeSetConfig FDConfig.rhs
          The RHS of the FD.
 

Methods in de.fesenmeyer.dbnormalizer.core.configuration that return AttributeSetConfig
 AttributeSetConfig TableConfig.getAttributeSetConfig()
          Gets the attributes.
 AttributeSetConfig FDConfig.getLhs()
          Gets the LHS of the FD.
 AttributeSetConfig FDConfig.getRhs()
          Gets the RHS of the FD.
private  AttributeSetConfig ConfigurationReader.retrieveAttributes(Element attributeSetNode)
          Reads the (table) attributes from a node containing (table) attributes.
 

Methods in de.fesenmeyer.dbnormalizer.core.configuration with parameters of type AttributeSetConfig
 void TableConfig.setAttributeSetConfig(AttributeSetConfig attributeSetConfig)
          Sets the attributes.
 void FDConfig.setLhs(AttributeSetConfig lhs)
          Sets the LHS of the FD.
 void FDConfig.setRhs(AttributeSetConfig rhs)
          Sets the RHS of the FD.