Back to project page GeoTasker.
The source code is released under:
GNU General Public License
If you think the Android project GeoTasker 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.fjaviermo.model; //from w ww . j a va 2 s. c om public class Profile { private long mId; private String mName; private boolean mActive; public long getId() { return mId; } public void setId(long id) { this.mId = id; } public String getName() { return mName; } public void setName(String name) { mName = name; } public boolean isActive() { return mActive; } public void setActive(boolean active) { mActive = active; } // Will be used by the ArrayAdapter in the ListView @Override public String toString() { return mName; } }