Back to project page noxdroidandroidapp.
The source code is released under:
MIT License
If you think the Android project noxdroidandroidapp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package dk.itu.noxdroid.model; /*from w w w. j av a 2 s.com*/ public class Nox { double nox; String timeStamp; public Nox() { } public Nox(String timeStamp, double nox) { this.timeStamp = timeStamp; this.nox = nox; } public String getTimeStamp() { return timeStamp; } public void setTimeStamp(String timeStamp) { this.timeStamp = timeStamp; } public double getNox() { return nox; } public void setNox(double nox) { this.nox = nox; } }