Back to project page GPA.
The source code is released under:
Apache License
If you think the Android project GPA 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 com.bishal.android.taskmanager; // ww w . j a va2 s. c o m public class GPS_INFO { int _id; String _category; String _title; String _latitude; String _longitue; public GPS_INFO(){ } public GPS_INFO(String Category,String Title,String Latitude,String Longitude){ this._category=Category; this._title=Title; this._latitude=Latitude; this._longitue=Longitude; } public String getCATEGORY(){ return this._category; } public String getTITLE(){ return this._title; } public String getLATITUDE(){ return this._latitude; } public String getLONGITUDE(){ return this._longitue; } }