aboutsummaryrefslogtreecommitdiff
path: root/src/net/cbaines/suma/Preferences.java
blob: 46a521ba0259f638b2d603eb5596c609add99992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package net.cbaines.suma;

public interface Preferences {
    static final String GPS_ENABLED = "GPSEnabled";
    static final boolean GPS_ENABLED_BY_DEFAULT = true;
    static final String UNI_LINK_BUS_TIMES = "uniLinkLiveBusTimesEnabled";
    static final boolean UNI_LINK_BUS_TIMES_ENABLED_BY_DEFAULT = true;
    static final String NON_UNI_LINK_BUS_TIMES = "nonUniLinkLiveBusTimesEnabled";
    static final boolean NON_UNI_LINK_BUS_TIMES_ENABLED_BY_DEFAULT = false;
    static final String UNI_LINK_BUS_STOPS = "uniLinkBusStop";
    static final boolean UNI_LINK_BUS_STOPS_ENABLED_BY_DEFAULT = true;
    static final String NON_UNI_LINK_BUS_STOPS = "nonUniLinkBusStop";
    static final boolean NON_UNI_LINK_BUS_STOPS_ENABLED_BY_DEFAULT = false;
}