diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2012-01-20 19:21:46 +0100 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2012-01-20 19:21:46 +0100 |
commit | 182ee7bb7e54d8511f02103b53507fde972440fe (patch) | |
tree | f1529147f30c0fa576d46e1761375424af5e8a85 /main/src/cgeo/calendar | |
parent | edf6a43852d57c33bc9f98533467c7ec2a314fcd (diff) | |
download | cgeo-182ee7bb7e54d8511f02103b53507fde972440fe.zip cgeo-182ee7bb7e54d8511f02103b53507fde972440fe.tar.gz cgeo-182ee7bb7e54d8511f02103b53507fde972440fe.tar.bz2 |
new: #1014 calendar add-on
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 +} |