Back to project page mobile-android.
The source code is released under:
MIT License
If you think the Android project mobile-android 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 com.manyconf.conference; //from ww w .j a v a2 s . c om import java.net.URL; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.TreeSet; /** * Model of a conference, filled by the ConferenceBuilder class */ public class ConferenceModel { public int conferenceID; public String name; public String description; public Date startdate; public Date enddate; public String location; public ArrayList<TrackModel> tracks = new ArrayList<TrackModel>(); /** shortcut property, a collection of all speakers across all tracks */ public TreeSet<SpeakerModel> speakers = new TreeSet<SpeakerModel>(); public ArrayList<URL> teaserImages = new ArrayList<URL>(); /** pre-calculated: total number of presentations across all tracks */ public int nTotalPresentations; public String shortUrl; @Override public String toString() { return this.name; } }