Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/sense
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv28029/src/net/sourceforge/bprocessor/model/sense
Modified Files:
SensorItem.java
Log Message:
Index: SensorItem.java
===================================================================
RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/sense/SensorItem.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SensorItem.java 14 Sep 2009 16:22:55 -0000 1.1
--- SensorItem.java 12 Feb 2010 11:44:28 -0000 1.2
***************
*** 37,40 ****
--- 37,46 ----
/**
*
+ */
+ public SensorItem() {
+ }
+
+ /**
+ *
* @return date
*/
***************
*** 45,48 ****
--- 51,62 ----
/**
*
+ * @param t long
+ */
+ public void setTime(long t) {
+ time = t;
+ }
+
+ /**
+ *
* @return id
*/
***************
*** 53,56 ****
--- 67,78 ----
/**
*
+ * @param value String
+ */
+ public void setId(String value) {
+ id = value;
+ }
+
+ /**
+ *
* @return temperature
*/
***************
*** 61,64 ****
--- 83,94 ----
/**
*
+ * @param value double
+ */
+ public void setTemparature(double value) {
+ temperature = value;
+ }
+
+ /**
+ *
* @return humidity
*/
***************
*** 68,71 ****
--- 98,109 ----
/**
+ *
+ * @param value double
+ */
+ public void setHumidity(double value) {
+ humidity = value;
+ }
+
+ /**
* {@inheritDoc}
*/
|