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.
/** IssuePic */ package com.mk4droid.IMC_Constructors; //from w ww .j a va 2 s . co m /** * Issue Picture as an object * * @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 IssuePic { /** Unique identifier of the issue that this picture belongs to */ public int _id; /** Image data as a byte array */ public byte[] _IssuePicData; // Empty constructor public IssuePic(){ } // constructor public IssuePic(int id, byte[] IssuePicData){ this._id = id; this._IssuePicData = IssuePicData; } }