Uses of Class
de.dfki.mycbr.core.casebase.SimpleAttribute

Packages that use SimpleAttribute
de.dfki.mycbr.core.casebase Contains classes for the basic definition of DefaultCaseBase objects. 
de.dfki.mycbr.core.explanation Explanations provide additional information on all myCBR concepts. 
de.dfki.mycbr.core.model Contains classes for the basic definition of the project's model. 
 

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

Subclasses of SimpleAttribute in de.dfki.mycbr.core.casebase
 class DateAttribute
          Represents date attributes.
 class DoubleAttribute
          Represents integers in query/cases.
 class FloatAttribute
          Represents integers in query/cases.
 class IntegerAttribute
          Represents integers in query/cases.
 class IntervalAttribute
          Represents intervals as values in query/case.
 class SpecialAttribute
          Represents special values in queries or cases.
 class StringAttribute
          Represents strings used in query/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 SimpleAttribute
 SimpleAttribute DoubleRange.getValue(double value)
          Returns an attribute representing the given number.
 SimpleAttribute FloatRange.getValue(float value)
          Returns an attribute representing the given number.
 SimpleAttribute IntegerRange.getValue(int v)
          Returns the attribute for the given Integer.
 

Methods in de.dfki.mycbr.core.casebase with parameters of type SimpleAttribute
 Similarity SpecialAttribute.calculateSimilarity(SimpleAttribute att)
          Returns similarity of this attribute to the given attribute.
 java.lang.Integer SymbolRange.getIndexOf(SimpleAttribute att)
          Returns the index of the given attribute.
 

Uses of SimpleAttribute in de.dfki.mycbr.core.explanation
 

Methods in de.dfki.mycbr.core.explanation with parameters of type SimpleAttribute
 ConceptExplanation ExplanationManager.explain(SimpleAttribute att, java.lang.String description)
           
 ConceptExplanation ExplanationManager.getExplanation(SimpleAttribute att)
           
 void ExplanationManager.setExplanation(ConceptExplanation exp, SimpleAttribute att)
           
 

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

Methods in de.dfki.mycbr.core.model that return SimpleAttribute
 SimpleAttribute IntegerDesc.getIntegerAttribute(java.lang.Integer value)
          Returns IntegerAttribute object representing the specified value.
 SimpleAttribute DoubleDesc.getNumberAttribute(double value)
          Returns NumberAttribute object representing the specified value.
 SimpleAttribute FloatDesc.getNumberAttribute(float value)
          Returns NumberAttribute object representing the specified value.
 

Methods in de.dfki.mycbr.core.model with parameters of type SimpleAttribute
 java.lang.Integer SymbolDesc.getIndexOf(SimpleAttribute att)
           
 java.lang.Integer BooleanDesc.getIndexOf(SimpleAttribute att)