1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package cgeo.geocaching.list; abstract class AbstractList { public final int id; public final String title; public AbstractList(final int id, final String title) { this.id = id; this.title = title; } public abstract String getTitleAndCount(); }