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; //www . j a v a2 s. c o m import java.util.ArrayList; public class NoxSensor extends Sensor { private ArrayList<Nox> nox = new ArrayList<Nox>(); public NoxSensor() { } public NoxSensor(String title) { super(title); } }