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 www . jav a2 s. c o m import java.util.ArrayList; import java.util.List; /** * Created by mail929 on 9/13/14. */ public class Event { public double distance; public List<Double> checkPoints = new ArrayList<Double>(); public int id; int meetId; public List<Integer> runners = new ArrayList<Integer>(); public String level; public boolean run; public Event(int id, int meetId, double distance, List<Double> checkPoints, String level, List<Integer> runners, boolean run) { this.distance = distance; this.checkPoints = checkPoints; this.meetId = meetId; this.id = id; this.level = level; this.runners = runners; this.run = run; } }