Back to project page Sortr.
The source code is released under:
Apache License
If you think the Android project Sortr 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.brownapps.sortr.data; //from www .j ava 2 s .c o m import java.util.ArrayList; import java.util.List; import android.content.ContentValues; public class Team { public String Name = ""; public long Id = -1; public List<String> teamMembers = new ArrayList<String>(); public ContentValues getContentValues(){ ContentValues values = new ContentValues(); values.put("GeneratedTeamName", Name); return values; } }