new class to contain method results

This commit is contained in:
Sander Hautvast 2015-09-26 10:47:16 +02:00
parent c74da14533
commit 07021dd9a9

View file

@ -0,0 +1,22 @@
package nl.jssl.autounit.classanalyser;
import java.util.List;
public class ClassResults {
private final Class<?> type;
private final List<MethodCallResults> methodCallResults;
public ClassResults(Class<?> type, List<MethodCallResults> methodCallResults) {
super();
this.type = type;
this.methodCallResults = methodCallResults;
}
public List<MethodCallResults> getMethodCallResults() {
return methodCallResults;
}
public Class<?> getType() {
return type;
}
}