algorithms-for-computing-li.../LinearRegressionTool/src/main/java/de/wwwu/awolf/model/communication/AlgorithmData.java

38 lines
805 B
Java

package de.wwwu.awolf.model.communication;
import de.wwwu.awolf.model.Line;
import de.wwwu.awolf.presenter.algorithms.Algorithm;
public class AlgorithmData implements Data {
private SubscriberType type;
private Algorithm.Type algorithmType;
private Line lineData;
public Algorithm.Type getAlgorithmType() {
return algorithmType;
}
public void setAlgorithmType(Algorithm.Type algorithmType) {
this.algorithmType = algorithmType;
}
@Override
public SubscriberType getType() {
return type;
}
@Override
public void setType(SubscriberType type) {
this.type = type;
}
public Line getLineData() {
return lineData;
}
public void setLineData(Line lineData) {
this.lineData = lineData;
}
}