Back to project page HastingsMobileAndroid.
The source code is released under:
Apache License
If you think the Android project HastingsMobileAndroid 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 edu.hastings.hastingscollege.model; //w w w .j a v a 2 s. c o m import java.util.HashMap; import java.util.List; public class EventModel { public String eventName; public String eventWeek; public String[] eventDays; public List<List<HashMap<String, String>>> eventsOfDay; public EventModel(String name, String week, String[] days, List<List<HashMap<String, String>>> dailyEvents) { this.eventName = name; this.eventWeek = week; this.eventDays = days; this.eventsOfDay = dailyEvents; } }