Several bug fixes and small improvements

This commit is contained in:
2014-08-28 14:26:25 +02:00
parent cda024b60a
commit 9f800dd7dd
3 changed files with 18 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ch.psi</groupId>
<artifactId>ch.psi.fda.core</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
<dependencies>
<dependency>

View File

@@ -13,6 +13,7 @@ public class LinePlot extends Plot {
private Double minX;
private Double maxX;
private Integer maxSeries;
public LinePlot(){
}
@@ -42,4 +43,11 @@ public class LinePlot extends Plot {
public void setMaxX(Double maxX) {
this.maxX = maxX;
}
@XmlAttribute
public Integer getMaxSeries() {
return maxSeries;
}
public void setMaxSeries(Integer maxSeries) {
this.maxSeries = maxSeries;
}
}

View File

@@ -18,6 +18,8 @@ public class MatrixPlot extends Plot {
private Double minY;
private Double maxY;
private Integer nY;
private String type;
public MatrixPlot(){
}
@@ -75,4 +77,11 @@ public class MatrixPlot extends Plot {
public void setnY(Integer nY) {
this.nY = nY;
}
@XmlAttribute
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}