Android Open Source - Android-Project-Manager Task






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   w  w  w  . j  a va 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 Task {
  private int taskId;
  private int projectId;
  private String taskName;
  private String status;
  private String priority;
  private int percentage;
  private int yearStartDate;
  private int monthStartDate;
  private int dayStartDate;
  private int yearDueDate;
  private int monthDueDate;
  private int dayDueDate;
  private String photoPath;
  private String description;
  private String contentPath;
  
  public Task() {
    
  }

  public Task(int taskId, int projectId, String taskName, String status, String priority, int percentage, int yearStartDate,
      int monthStartDate, int dayStartDate, int yearDueDate, int monthDueDate, int dayDueDate, String photoPath, 
      String description, String contentPath) {
    super();
    this.taskId = taskId;
    this.projectId = projectId;
    this.taskName = taskName;
    this.status = status;
    this.priority = priority;
    this.percentage = percentage;
    this.yearStartDate = yearStartDate;
    this.monthStartDate = monthStartDate;
    this.dayStartDate = dayStartDate;
    this.yearDueDate = yearDueDate;
    this.monthDueDate = monthDueDate;
    this.dayDueDate = dayDueDate;
    this.photoPath = photoPath;
    this.description = description;
    this.contentPath = contentPath;
  }

  public String getContentPath() {
    return contentPath;
  }

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

  public int getTaskId() {
    return taskId;
  }

  public void setTaskId(int taskId) {
    this.taskId = taskId;
  }

  public int getProjectId() {
    return projectId;
  }

  public void setProjectId(int projectId) {
    this.projectId = projectId;
  }

  public String getTaskName() {
    return taskName;
  }

  public void setTaskName(String taskName) {
    this.taskName = taskName;
  }

  public String getStatus() {
    return status;
  }

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

  public String getPriority() {
    return priority;
  }

  public void setPriority(String priority) {
    this.priority = priority;
  }

  public int getPercentage() {
    return percentage;
  }

  public void setPercentage(int percentage) {
    this.percentage = percentage;
  }

  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 getPhotoPath() {
    return photoPath;
  }

  public void setPhotoPath(String photoPath) {
    this.photoPath = photoPath;
  }

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }
  
  
}




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