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; // www.ja v a 2s. c o m import java.util.ArrayList; import java.util.List; /** * Created by mail929 on 9/13/14. */ public class Team { public List<Integer> runners = new ArrayList<Integer>(); public List<Integer> meets = new ArrayList<Integer>(); public String name; public String shortName; int id; public Team(int id, String name, String shortName, List<Integer> runners) { this.id = id; this.name = name; this.shortName = shortName; this.runners = runners; } public Team(int id, String name, String shortName, List<Integer> runners, List<Integer> meets) { this.id = id; this.name = name; this.shortName = shortName; this.runners = runners; this.meets = meets; } public Team(int id, String name, String shortName) { this.id = id; this.name = name; this.shortName = shortName; } }