source: trunk/CrossPare/src/de/ugoe/cs/cpdp/eval/IResultStorage.java @ 69

Last change on this file since 69 was 69, checked in by sherbold, 9 years ago
  • updated new result storage concept and cross-project experiments to first check if a result is available. If this is the case, the experiment is not executed.
  • Property svn:mime-type set to text/plain
File size: 211 bytes
Line 
1package de.ugoe.cs.cpdp.eval;
2
3public interface IResultStorage {
4
5    public void addResult(ExperimentResult result);
6   
7    public boolean containsResult(String experimentName, String productName);
8}
Note: See TracBrowser for help on using the repository browser.