1 2 3 4 5 6 7 8 9 10 11 12 13 14
package cgeo.geocaching; public class cgList { public static final int STANDARD_LIST_ID = 1; public int id = 0; public String title = null; public cgList(int idIn, String titleIn) { id = idIn; title = titleIn; } }