aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/list/AbstractList.java
blob: c75c6a1955c3dbde0042fb29b6f72e8fca9a3da0 (plain)
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();

}