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 ww . j a va 2 s. c o m*/ public abstract class Sensor { private String title; public Sensor () { } public Sensor (String title){ this.title = title; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }