Added code for StatisticsCalculator, Periode.. etc

Added a lot of code. Currently not functioning for Periode is acting
strange.
Not tested...
This commit is contained in:
Kenneth van Ewijk
2014-10-19 14:38:43 +02:00
parent cbd4ef9077
commit ab4df98479
7 changed files with 363 additions and 84 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
import java.sql.Timestamp;
import java.math.BigDecimal;
public class Measurement
{
private String stationId;
private java.sql.Timestamp dateStamp;
private Timestamp dateStamp;
private short barometer;
private short insideTemp;
private short insideHum;
@@ -32,8 +32,8 @@ public class Measurement
public String getStationId () { return stationId; };
// dateStamp
public void setDateStamp (java.sql.Timestamp ts) { this.dateStamp = ts;};
public java.sql.Timestamp getDateStamp () { return dateStamp; };
public void setDateStamp (Timestamp ts) { this.dateStamp = ts;};
public Timestamp getDateStamp () { return dateStamp; };
// barometer
public void setRawBarometer (short val) { this.barometer = val;};