WIMM Labs


com.wimm.framework.provider
Class Calendar

java.lang.Object
  extended by com.wimm.framework.provider.Calendar

public final class Calendar
extends Object

This class exposes constants and methods for accessing Calendar data in the WIMM Calendar App. These data will be updated everytime the device sync with the WIMM server. Up to 7 days of Calendars data will be available.

See Android Content Providers Dev Guide for more information on using ContentProvider.

Since:
WIMM SDK 1.0.0

Nested Class Summary
static interface Calendar.CalendarColumns
          Columns for the Calendar table.
static class Calendar.Calendars
          This class provides access to the Calendar table.
static class Calendar.Event
          This class represents a single calendar event.
static interface Calendar.EventColumns
          Columns for the Event table.
static class Calendar.Events
          This class provides access to the Event table.
 
Field Summary
static String AUTHORITY
          The authority.
static String CONTENT_AUTHORITY
          The content:// style URL for this provider.
 
Constructor Summary
Calendar()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

AUTHORITY

public static final String AUTHORITY
The authority.

Constant Value: "com.wimm.calendar"

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

CONTENT_AUTHORITY

public static final String CONTENT_AUTHORITY
The content:// style URL for this provider.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values
Constructor Detail

Calendar

public Calendar()

WIMM Labs