eu.hansolo.steelseries.tools.DataPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SteelSeries Show documentation
Show all versions of SteelSeries Show documentation
The SteelSeries is a javabeans component library that contains gauges.
You will find linear and radial gauges. In addition you will also find
digital displays, indicators from cars and some instruments from airplanes and
sailboats.
package eu.hansolo.steelseries.tools;
/**
*
* @author Gerrit Grunwald
*/
public class DataPoint {
private final long TIMESTAMP;
private final double VALUE;
public DataPoint(final long TIMESTAMP, final double VALUE) {
this.TIMESTAMP = TIMESTAMP;
this.VALUE = VALUE;
}
public long getTimeStamp() {
return this.TIMESTAMP;
}
public double getValue() {
return this.VALUE;
}
}