Uses of Class
de.fesenmeyer.dbnormalizer.core.algorithms.NFDeterminationResult

Packages that use NFDeterminationResult
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.gui The top-level package of the GUI, which is implemented in Swing. 
 

Uses of NFDeterminationResult in de.fesenmeyer.dbnormalizer.core
 

Fields in de.fesenmeyer.dbnormalizer.core declared as NFDeterminationResult
private  NFDeterminationResult Table.nfDeterminationResult
          The result of the normal form determination for this table.
 

Methods in de.fesenmeyer.dbnormalizer.core that return NFDeterminationResult
 NFDeterminationResult Table.getNfDeterminationResult()
          Gets the result of the normal form determination for this table.
 

Methods in de.fesenmeyer.dbnormalizer.core with parameters of type NFDeterminationResult
 void Table.setNfDeterminationResult(NFDeterminationResult nfDeterminationResult)
          Sets the result of the normal form determination for this table.
 

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

Methods in de.fesenmeyer.dbnormalizer.core.algorithms that return NFDeterminationResult
 NFDeterminationResult NFDetermination.determine()
           The normal form determination algorithm, which returns the normal form and the FDs violating one of the normal forms 2NF, 3NF or BCNF.
 

Uses of NFDeterminationResult in de.fesenmeyer.dbnormalizer.gui
 

Methods in de.fesenmeyer.dbnormalizer.gui with parameters of type NFDeterminationResult
private  void SimpleFDPanel.SimpleFDTableModel.setNFDeterminationResult(NFDeterminationResult result)
           
private  void FDAnalysisPanel.FDAnalysisTableModel.setNFDeterminationResult(NFDeterminationResult result)