All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.repir.TestSet.ResultFile Maven / Gradle / Ivy

The newest version!
package io.github.repir.TestSet;

import io.github.repir.Retriever.Query;
import java.util.ArrayList;
import java.util.Collection;

/**
 * File Structure to store the results of a {@link TestSet} in a text file.
 * @author jer
 */
public interface ResultFile {
   /**
    * @return Collection of {@link Query}s that are specified in the {@link TestSet}, 
    * containing the results stored in the given file. 
    */
   public ArrayList getResults();

   /**
    * Stores the results in the list of {@link Query}s, in the file.
    * @param results 
    */
   public void writeresults(ArrayList results);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy