WIMM Labs


com.wimm.framework.provider
Class Calendar.Event

java.lang.Object
  extended by com.wimm.framework.provider.Calendar.Event
All Implemented Interfaces:
Serializable
Enclosing class:
Calendar

public static class Calendar.Event
extends Object
implements Serializable

This class represents a single calendar event.

Since:
WIMM SDK 1.0.0
See Also:
Calendar.Events, Serialized Form

Field Summary
 String attendees
          The event attendees.
 String calendar
          The calendar ID.
 String content
          The event content.
 String id
          The event ID.
 String location
          The event location.
 String reminders
          The event reminders.
 String title
          The event title.
 long utcEndSec
          The current local UTC/GMT time that the event ends (in seconds).
 long utcStartSec
          The current local UTC/GMT time that the event starts (in seconds).
 
Constructor Summary
Calendar.Event()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

public String id
The event ID.

Since:
WIMM SDK 1.0.0

calendar

public String calendar
The calendar ID.

Since:
WIMM SDK 1.0.0

utcStartSec

public long utcStartSec
The current local UTC/GMT time that the event starts (in seconds).

Since:
WIMM SDK 1.0.0

utcEndSec

public long utcEndSec
The current local UTC/GMT time that the event ends (in seconds).

Since:
WIMM SDK 1.0.0

title

public String title
The event title.

Since:
WIMM SDK 1.0.0

location

public String location
The event location.

Since:
WIMM SDK 1.0.0

content

public String content
The event content.

Since:
WIMM SDK 1.0.0

attendees

public String attendees
The event attendees.

Since:
WIMM SDK 1.0.0

reminders

public String reminders
The event reminders.

Since:
WIMM SDK 1.0.0
Constructor Detail

Calendar.Event

public Calendar.Event()

WIMM Labs