All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.intelie.liverig.plugin.widgets.CurvePoint Maven / Gradle / Ivy

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