
net.intelie.liverig.plugin.widgets.CurvePoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
The newest version!
package net.intelie.liverig.plugin.widgets;
public class CurvePoint {
private Double timestamp;
private Double x;
private Double y;
public CurvePoint(Double timestamp, Double x, Double y) {
this.timestamp = timestamp;
this.x = x;
this.y = y;
}
public Double getTimestamp() {
return timestamp;
}
public void setTimestamp(Double timestamp) {
this.timestamp = timestamp;
}
public Double getX() {
return x;
}
public void setX(Double x) {
this.x = x;
}
public Double getY() {
return y;
}
public void setY(Double y) {
this.y = y;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy