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:
+4
-4
@@ -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;};
|
||||
|
||||
Reference in New Issue
Block a user