Interface DependencyRetrievalResult
-
- All Superinterfaces:
Comparable<RetrievalResult>,RetrievalResult
- All Known Implementing Classes:
DependencyRetrievalResultImpl
public interface DependencyRetrievalResult extends RetrievalResult
Interface for the dependency specific implementation ofRetrievalResult, which contains a list of the result objects and the similarity value.- Author:
- Rahol Kumar, Alexander Schultheis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<DataObject>getResultObjects()Method, that returns the result objects.voidsetResultObjects(List<DataObject> resultObjects)Method, that sets the result objects.-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface de.uni_trier.wi2.procake.retrieval.RetrievalResult
getObject, getObjectId, getRetrievalTime, getSimilarity
-
-
-
-
Method Detail
-
setResultObjects
void setResultObjects(List<DataObject> resultObjects)
Method, that sets the result objects.- Parameters:
resultObjects- The result objects to be set as a list.
-
getResultObjects
List<DataObject> getResultObjects()
Method, that returns the result objects.- Returns:
- The result objects as list.
-
-