Android Open Source - GeoTasker Profile






From Project

Back to project page GeoTasker.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

com.fjaviermo.adapter.ProfileAdapter.java
com.fjaviermo.dao.LocationDataSource.java
com.fjaviermo.dao.ProfilesDataSource.java
com.fjaviermo.database.DatabaseHelper.java
com.fjaviermo.database.LocationSQLiteHelper.java
com.fjaviermo.database.ProfilesSQLiteHelper.java
com.fjaviermo.geotasker.AddProfileDialogFragment.java
com.fjaviermo.geotasker.MainActivity.java
com.fjaviermo.geotasker.ProfileFragment.java
com.fjaviermo.geotasker.ProfileListFragment.java
com.fjaviermo.model.Location.java
com.fjaviermo.model.Profile.java