package de.wwwu.awolf.model.communication; import de.wwwu.awolf.presenter.algorithms.Algorithm; import java.util.List; public class EvaluationData implements Data { private SubscriberType type; private List algorithmtypes; private List oneColumnresult; private List> multipleColumnResult; private int column; private List labels; public List getAlgorithmtypes() { return algorithmtypes; } public void setAlgorithmtypes(List algorithmtype) { this.algorithmtypes = algorithmtype; } public List getOneColumnresult() { return oneColumnresult; } public void setOneColumnresult(List oneColumnresult) { this.oneColumnresult = oneColumnresult; } public List> getMultipleColumnResult() { return multipleColumnResult; } public void setMultipleColumnResult(List> multipleColumnResult) { this.multipleColumnResult = multipleColumnResult; } @Override public SubscriberType getType() { return type; } @Override public void setType(SubscriberType type) { this.type = type; } public void setColumn(int col) { this.column = col; } public void setLabels(List tableInput) { this.labels = tableInput; } }