Uses of Interface
de.dfki.mycbr.core.similarity.TaxonomyNode

Packages that use TaxonomyNode
de.dfki.mycbr.core.casebase Contains classes for the basic definition of DefaultCaseBase objects. 
de.dfki.mycbr.core.model Contains classes for the basic definition of the project's model. 
de.dfki.mycbr.core.similarity Contains standard classes to maintain similarity functions for attribute descriptions (local similarity functions) and concepts (amalgamation functions). 
 

Uses of TaxonomyNode in de.dfki.mycbr.core.casebase
 

Classes in de.dfki.mycbr.core.casebase that implement TaxonomyNode
 class SpecialAttribute
          Represents special values in queries or cases.
 class SymbolAttribute
          Represents values of symbol attribute descriptions (for example: color could have green, blue, red, ... as SymbolAttribute objects).
 

Methods in de.dfki.mycbr.core.casebase that return types with arguments of type TaxonomyNode
 java.util.List<TaxonomyNode> SymbolAttribute.getNodes()
           
 

Uses of TaxonomyNode in de.dfki.mycbr.core.model
 

Classes in de.dfki.mycbr.core.model that implement TaxonomyNode
 class BooleanDesc
          Description for boolean attributes.
 class SpecialDesc
          Special values are values that can be used for any attribute description.
 class SymbolDesc
          Description for symbol attributes.
 

Methods in de.dfki.mycbr.core.model that return types with arguments of type TaxonomyNode
 java.util.List<TaxonomyNode> SymbolDesc.getNodes()
           
 

Uses of TaxonomyNode in de.dfki.mycbr.core.similarity
 

Methods in de.dfki.mycbr.core.similarity that return TaxonomyNode
 TaxonomyNode Taxonomy.getParent(TaxonomyNode currentNode)
          Returns the parent node of the given node.
 TaxonomyNode TaxonomyFct.getTopSymbol()
          Returns the top symbol of the underlying taxonomy.
 TaxonomyNode Taxonomy.getTopSymbol()
          Gets the top symbol of this taxonomy
 

Methods in de.dfki.mycbr.core.similarity that return types with arguments of type TaxonomyNode
 java.util.Collection<java.util.Map.Entry<TaxonomyNode,TaxonomyNode>> TaxonomyFct.entrySet()
           
 java.util.Collection<java.util.Map.Entry<TaxonomyNode,TaxonomyNode>> TaxonomyFct.entrySet()
           
 java.util.List<TaxonomyNode> Taxonomy.getChildren(TaxonomyNode node)
          Returns the children of the given node.
 java.util.List<TaxonomyNode> Taxonomy.getLeaves()
           
 java.util.List<TaxonomyNode> TaxonomyNode.getNodes()
          Returns a list of nodes allowed for the taxonomy this is contained in.
 java.util.HashMap<TaxonomyNode,TaxonomyNode> Taxonomy.getParentMap()
           
 java.util.HashMap<TaxonomyNode,TaxonomyNode> Taxonomy.getParentMap()
           
 java.util.HashMap<TaxonomyNode,Similarity> Taxonomy.getSimilarityMap()
           
 

Methods in de.dfki.mycbr.core.similarity with parameters of type TaxonomyNode
 java.util.List<TaxonomyNode> Taxonomy.getChildren(TaxonomyNode node)
          Returns the children of the given node.
 java.lang.Object TaxonomyFct.getParent(TaxonomyNode currentNode)
          Returns the parent of the given node.
 TaxonomyNode Taxonomy.getParent(TaxonomyNode currentNode)
          Returns the parent node of the given node.
 Similarity TaxonomyFct.getSimilarity(TaxonomyNode node)
           
 Similarity Taxonomy.getSimilarity(TaxonomyNode obj)
          Returns the Similarity object that corresponds to obj.
 void TaxonomyFct.setNodeSimilarity(TaxonomyNode att, Similarity sim)
           
 void TaxonomyFct.setParent(TaxonomyNode symbol, TaxonomyNode newParent)
          Changes the parent of symbol to newParent.