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 av a2s. co m import java.util.ArrayList; /** * Model of a track, filled by the ConferenceBuilder class */ public class TrackModel { public String name; public String description; public String location; public String type; // workshop, presentation, etc public ArrayList<PresentationModel> presentations; }