diff options
Diffstat (limited to 'main/src/cgeo/calendar')
-rw-r--r-- | main/src/cgeo/calendar/ICalendar.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/src/cgeo/calendar/ICalendar.java b/main/src/cgeo/calendar/ICalendar.java new file mode 100644 index 0000000..bc08ef4 --- /dev/null +++ b/main/src/cgeo/calendar/ICalendar.java @@ -0,0 +1,16 @@ +package cgeo.calendar; + +public interface ICalendar { + static final String INTENT = "cgeo.calendar.RESERVE"; + + static final String URI_SCHEME = "add"; + static final String URI_HOST = "cgeo.org"; + + static final String PARAM_SHORT_DESC = "shortDesc"; // cache short description + static final String PARAM_HIDDEN_DATE = "hiddenDate"; // cache hidden date in milliseconds + static final String PARAM_URL = "url"; // cache URL + static final String PARAM_NOTE = "note"; // personal note + static final String PARAM_NAME = "name"; // cache name + static final String PARAM_LOCATION = "location"; // cache location, or empty string + static final String PARAM_COORDS = "coords"; // cache coords, or empty string +} |