package de.wwwu.awolf.model.communication; import de.wwwu.awolf.presenter.algorithms.Algorithm; import java.io.Serializable; import java.util.List; import java.util.Map; public class EvaluationData implements Data { private SubscriberType type; private List algorithmtypes; private List oneColumnresult; private Map> multipleColumnResult; private int rowsPerColumn; private int column; private List labels; public int getRowsPerColumn() { return rowsPerColumn; } public void setRowsPerColumn(int rowsPerColumn) { this.rowsPerColumn = rowsPerColumn; } public int getColumn() { return column; } public void setColumn(int col) { this.column = col; } public List getLabels() { return labels; } public void setLabels(List tableInput) { this.labels = tableInput; } 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 Map> getMultipleColumnResult() { return multipleColumnResult; } public void setMultipleColumnResult( Map> multipleColumnResult) { this.multipleColumnResult = multipleColumnResult; } @Override public SubscriberType getType() { return type; } @Override public void setType(SubscriberType type) { this.type = type; } }