aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/network/DownloadProgress.java
blob: e0f20dca7ff6eb01a04b37b76a95f871864d62d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cgeo.geocaching.network;

public class DownloadProgress {

    private DownloadProgress() {
        // Do not instantiate
    }

    public static final int MSG_DONE = -1;
    public static final int MSG_SERVER_FAIL = -2;
    public static final int MSG_NO_REGISTRATION = -3;
    public static final int MSG_WAITING = 0;
    public static final int MSG_LOADING = 1;
    public static final int MSG_LOADED = 2;
}