Back to project page Android-Project-Manager.
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.
/* Project Manager - Android application for the administration of projects. Copyright (C) 2014 - ITESM/* w ww. j av 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 PhotoRef { private int photoId; private String PhotoPath; private int projectId; public PhotoRef() { } public PhotoRef(int photoId, String PhotoPath, int projectId) { this.photoId = photoId; this.PhotoPath = PhotoPath; this.projectId = projectId; } public int getPhotoId() { return photoId; } public void setPhotoId(int photoId) { this.photoId = photoId; } public String getPhotoPath() { return PhotoPath; } public void setPhotoPath(String PhotoPath) { this.PhotoPath = PhotoPath; } public int getProjectId() { return projectId; } public void setProjectId(int projectId) { this.projectId = projectId; } }