Uses of Interface
de.dfki.mycbr.core.ICaseBase

Packages that use ICaseBase
de.dfki.mycbr.core Contains all classes that represent core functionality of a CBR application such as the domain model, case bases, similarity functions and retrieval algorithms. 
de.dfki.mycbr.core.retrieval All retrieval algorithms extend the abstract class RetrievalEngine and can be used within Retrieval objects to obtain the retrieval results (possibly ordered pairs of case and corresponding similarity). 
de.dfki.mycbr.io Contains classes that handle import and export of relevant CBR application data. 
 

Uses of ICaseBase in de.dfki.mycbr.core
 

Classes in de.dfki.mycbr.core that implement ICaseBase
 class DefaultCaseBase
          Class DefaultCasebase.
 

Methods in de.dfki.mycbr.core that return ICaseBase
 ICaseBase Project.deleteCaseBase(java.lang.String name)
          Removes the case base specified by name from this project.
 ICaseBase Project.getCB(java.lang.String name)
          Returns the case base associated with the given name.
 

Methods in de.dfki.mycbr.core that return types with arguments of type ICaseBase
 java.util.HashMap<java.lang.String,ICaseBase> Project.getCaseBases()
          Gets the case bases for this project.
 

Uses of ICaseBase in de.dfki.mycbr.core.retrieval
 

Methods in de.dfki.mycbr.core.retrieval that return ICaseBase
 ICaseBase Retrieval.getCaseBase()
           
 

Methods in de.dfki.mycbr.core.retrieval with parameters of type ICaseBase
 java.util.List<Pair<Instance,Similarity>> SequentialRetrieval.retrieve(ICaseBase cb, Instance q)
           
abstract  java.util.List<Pair<Instance,Similarity>> RetrievalEngine.retrieve(ICaseBase cb, Instance q)
           
 java.util.List<Pair<Instance,Similarity>> SequentialRetrieval.retrieveK(ICaseBase cb, Instance q, int k)
           
abstract  java.util.List<Pair<Instance,Similarity>> RetrievalEngine.retrieveK(ICaseBase cb, Instance q, int k)
           
 java.util.List<Pair<Instance,Similarity>> SequentialRetrieval.retrieveKSorted(ICaseBase cb, Instance q, int k)
           
abstract  java.util.List<Pair<Instance,Similarity>> RetrievalEngine.retrieveKSorted(ICaseBase cb, Instance q, int k)
           
 java.util.List<Pair<Instance,Similarity>> SequentialRetrieval.retrieveSorted(ICaseBase cb, Instance q)
           
abstract  java.util.List<Pair<Instance,Similarity>> RetrievalEngine.retrieveSorted(ICaseBase cb, Instance q)
           
 void Retrieval.setCaseBase(ICaseBase cb)
           
 

Constructors in de.dfki.mycbr.core.retrieval with parameters of type ICaseBase
Retrieval(Concept c, ICaseBase cb)
           
Retrieval(Concept c, ICaseBase cb, RetrievalEngine re)
           
 

Uses of ICaseBase in de.dfki.mycbr.io
 

Methods in de.dfki.mycbr.io with parameters of type ICaseBase
 void CSVImporter.setCaseBase(ICaseBase cb)