Back to project page ImproveMyCity-Mobile.
The source code is released under:
GNU General Public License
If you think the Android project ImproveMyCity-Mobile listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** Comment */ package com.mk4droid.IMC_Constructors; /*ww w .j a va 2s.co m*/ import java.util.Date; /** * A structure for storing comments. * * @copyright Copyright (C) 2012 - 2013 Information Technology Institute ITI-CERTH. All rights reserved. * @license GNU Affero General Public License version 3 or later; see LICENSE.txt * @author Dimitrios Ververidis for the Multimedia Group (http://mklab.iti.gr). * */ public class Comment { /** Unique identification of the comment */ public int _id; /** Unique identification of the issue that this comments is addressed to */ public int _issueid; /** Unique identification of the user created this comment */ public int _userid; /** When this comment was created */ public Date _created; /** Comment as textual information */ public String _description; /** Name of the user that created this comment */ public String _username; public Comment(){} public Comment(int id, int issueid, int userid, Date created, String description, String username){ this._id = id; this._issueid = issueid; this._userid = userid; this._created = created; this._description = description; this._username = username; } }