Back to project page RaceTimer.
The source code is released under:
GNU General Public License
If you think the Android project RaceTimer 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.liamfruzyna.android.racetimer.objects; //from ww w .ja v a2 s . co m import java.util.ArrayList; import java.util.List; /** * Created by mail929 on 9/13/14. */ public class Time { public int meetId; public int eventId; public List<String> checkPoints = new ArrayList<String>(); public Time(int meetId, int eventId, List<String> checkPoints) { this.meetId = meetId; this.eventId = eventId; this.checkPoints = checkPoints; } }