Back to project page tum-campus.
The source code is released under:
GNU General Public License
If you think the Android project tum-campus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.tum.in.tumcampus.models; //w w w . j a va 2s . com /** * Gallery object */ public class Gallery { /** * Gallery Facebook-ID */ String id; /** * Name, e.g. PartyX */ String name; /** * Local image file, e.g. /mnt/sdcard/tumcampus/events/cache/xy.jpg */ String image; /** * Position in gallery */ String position; /** * Image is archived */ boolean archive; /** * New Event * * <pre> * @param id Event Facebook-ID * @param name Name, e.g. PartyX * @param image Local image, e.g. /mnt/sdcard/tumcampus/events/cache/xy.jpg * @param position Position in gallery * @param archive Image is archived * </pre> */ public Gallery(String id, String name, String image, String position, boolean archive) { this.id = id; this.name = name; this.image = image; this.position = position; this.archive = archive; } @Override public String toString() { return "id=" + id + " name=" + name + " image=" + image + " position=" + position; } }