Android Open Source - Android-Project-Manager Project






From Project

Back to project page Android-Project-Manager.

License

The source code is released under:

GNU General Public License

If you think the Android project Android-Project-Manager 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

/*
Project Manager - Android application for the administration of projects.
  Copyright (C) 2014 - ITESM//from  ww  w  .j a  v a  2  s.  c o  m

  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.


Authors:

   ITESM representatives
  Ing. Martha Sordia Salinas <msordia@itesm.mx>
    Ing. Mario de la Fuente <mario.delafuente@itesm.mx>

   ITESM students
  David Alberto De Leon Villarreal ddeleon93@gmail.com
  Alan Salinas Gonzalez alan.sagz@gmail
  Jos? Fernando Luna Alem?n jfernando.luna91@gmail.com
*/

package com.vaquerosisd.object;

public class Project {
  private int id;
  private String name;
  private int yearStartDate;
  private int monthStartDate;
  private int dayStartDate;
  private int yearDueDate;
  private int monthDueDate;
  private int dayDueDate;
  private String status;
  private int openTasks;
  private int totalTasks;
  private String contentPath;
  
  public Project() {
  }

  public Project(int id, String name, int yearStartDate, int monthStartDate, int dayStartDate, int yearDueDate, 
      int monthDueDate, int dyaDueDate, String status, int openTasks, int totalTasks,  String contentPath) {
    super();
    this.id = id;
    this.name = name;
    this.yearStartDate = yearStartDate;
    this.monthStartDate = monthStartDate;
    this.dayStartDate = dayStartDate;
    this.yearDueDate = yearDueDate;
    this.monthDueDate = monthDueDate;
    this.dayDueDate = dyaDueDate;
    this.status = status;
    this.openTasks = openTasks;
    this.totalTasks = totalTasks;
    this.contentPath = contentPath;
  }

  public int getId() {
    return id;
  }

  public void setId(int id) {
    this.id = id;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public int getYearStartDate() {
    return yearStartDate;
  }

  public void setYearStartDate(int yearStartDate) {
    this.yearStartDate = yearStartDate;
  }

  public int getMonthStartDate() {
    return monthStartDate;
  }

  public void setMonthStartDate(int monthStartDate) {
    this.monthStartDate = monthStartDate;
  }

  public int getDayStartDate() {
    return dayStartDate;
  }

  public void setDayStartDate(int dayStartDate) {
    this.dayStartDate = dayStartDate;
  }

  public int getYearDueDate() {
    return yearDueDate;
  }

  public void setYearDueDate(int yearDueDate) {
    this.yearDueDate = yearDueDate;
  }

  public int getMonthDueDate() {
    return monthDueDate;
  }

  public void setMonthDueDate(int monthDueDate) {
    this.monthDueDate = monthDueDate;
  }

  public int getDayDueDate() {
    return dayDueDate;
  }

  public void setDayDueDate(int dayDueDate) {
    this.dayDueDate = dayDueDate;
  }

  public String getStatus() {
    return status;
  }

  public void setStatus(String status) {
    this.status = status;
  }

  public int getOpenTasks() {
    return openTasks;
  }

  public void setOpenTasks(int openTasks) {
    this.openTasks = openTasks;
  }

  public int getTotalTasks() {
    return totalTasks;
  }

  public void setTotalTasks(int totalTasks) {
    this.totalTasks = totalTasks;
  }

  public String getContentPath() {
    return contentPath;
  }

  public void setContentPath(String contentPath) {
    this.contentPath = contentPath;
  }
  
  
  
}




Java Source Code List

com.vaquerosisd.adapters.ProjectListViewAdapter.java
com.vaquerosisd.adapters.TaskListViewAdapter.java
com.vaquerosisd.adapters.VideoNoteGridViewAdapter.java
com.vaquerosisd.adapters.VoiceNoteGridViewAdapter.java
com.vaquerosisd.database.DatabaseHelper.java
com.vaquerosisd.database.ProjectOperations.java
com.vaquerosisd.dialog.CustomStatus.java
com.vaquerosisd.dialog.DatePickerFragment.java
com.vaquerosisd.dialog.DeleteDialog.java
com.vaquerosisd.dialog.DeletePhotoDialog.java
com.vaquerosisd.dialog.DeleteTaskDialog.java
com.vaquerosisd.dialog.EditProject.java
com.vaquerosisd.fragments.TaskDescriptionFragment.java
com.vaquerosisd.fragments.VideoNotesFragment.java
com.vaquerosisd.fragments.VoiceNotesFragment.java
com.vaquerosisd.object.JsonWrapper.java
com.vaquerosisd.object.PhotoRef.java
com.vaquerosisd.object.Project.java
com.vaquerosisd.object.Task.java
com.vaquerosisd.object.User.java
com.vaquerosisd.object.WebServiceManager.java
com.vaquerosisd.projectmanager.About.java
com.vaquerosisd.projectmanager.ContentTask.java
com.vaquerosisd.projectmanager.Login.java
com.vaquerosisd.projectmanager.MainActivity.java
com.vaquerosisd.projectmanager.NewAccount.java
com.vaquerosisd.projectmanager.NewProject.java
com.vaquerosisd.projectmanager.NewTask.java
com.vaquerosisd.projectmanager.OnSwipeListener.java
com.vaquerosisd.projectmanager.PhotoManager.java
com.vaquerosisd.projectmanager.ProjectList.java
com.vaquerosisd.projectmanager.TaskList.java
com.vaquerosisd.projectmanager.WebserviceCallback.java
com.vaquerosisd.utils.FileOperations.java
com.vaquerosisd.utils.OnSwipeListener.java
com.vaquerosisd.utils.SpinnerUtil.java
com.vaquerosisd.utils.TabListener.java