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 a v a2s . co m*/ import java.util.ArrayList; public class LocationSensor extends Sensor { private ArrayList<Location> locations = new ArrayList<Location>(); public LocationSensor() { } public LocationSensor(String title) { super(title); } }