Sha256: e1db1c0227b4e9ad1df1568f71b02567a5593196827ddc2fd4853e1080335f4d

Contents?: true

Size: 1.25 KB

Versions: 17

Compression:

Stored size: 1.25 KB

Contents

package com.rhomobile.rhodes.event;

import android.net.Uri;
import android.net.Uri.Builder;

public class CalendarIDsProviderBase implements ICalendarIDsProvider{
    public Builder getUriBuilder() { return new Uri.Builder().scheme("content").authority("calendar");
    }

	public String getEventsID()				{ return "_id"; }
	public String getEventsEventID()		{ return "event_id"; }
	public String getEventsTitle()			{ return "title"; }
	public String getEventsStartDate()		{ return "dtstart"; }
	public String getEventsEndDate()		{ return "dtend"; }
	public String getEventsLocation()		{ return "eventLocation"; }
	public String getEventsNotes()			{ return "description"; }
	public String getEventsPrivacy()		{ return "visibility"; }
	public String getEventsDeleted()		{ return "deleted"; }
	public String getEventsDuration()		{ return "duration"; }
	public String getEventsBegin()			{ return "begin"; }
	public String getEventsEnd()			{ return "end"; }
	public String getEventsRrule()			{ return "rrule"; }
	
	public String getCalendarName()			{ return "name"; }
	public String getCalendarDisplayName()	{ return "calendar_displayName"; }
	public String getCalendarColor()		{ return "calendar_color"; }
	public String getCalendarAccessLevel()	{ return "calendar_access_level"; }
}

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
rhodes-7.6.0 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-7.5.1 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-7.4.1 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-7.1.17 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-6.2.0 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-6.0.11 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.18 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.17 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.15 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.0.22 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.2 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.0.7 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.0.3 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
rhodes-5.5.0 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
tauplatform-1.0.3 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
tauplatform-1.0.2 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java
tauplatform-1.0.1 platform/android/Rhodes/src/com/rhomobile/rhodes/event/CalendarIDsProviderBase.java