diff options
Diffstat (limited to 'src/net/cbaines/suma/Preferences.java')
-rw-r--r-- | src/net/cbaines/suma/Preferences.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/cbaines/suma/Preferences.java b/src/net/cbaines/suma/Preferences.java new file mode 100644 index 0000000..a978dd9 --- /dev/null +++ b/src/net/cbaines/suma/Preferences.java @@ -0,0 +1,13 @@ +package net.cbaines.suma; + +public interface Preferences { + // 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 NON_UNI_LINK_BUS_STOPS_OVERLAY = "nonUniLinkBusStops"; + static final boolean NON_UNI_LINK_BUS_STOP_OVERLAY_ENABLED_BY_DEFAULT = false; +} |