public interface IAppointmentData extends IExternalData, java.lang.Comparable<java.lang.Object>
Modifier and Type | Method and Description |
---|---|
void |
addRecipient(IRecipient recipient)
Add a participant of the appointment/meeting
|
java.lang.String |
getBody()
Returns additional appointment/meeting information
|
int |
getDuration()
Returns the planned duration of the appointment/meeting
|
java.lang.String |
getLocation()
Returns the location of the appointment/meeting
|
int |
getParticipationStatus()
Returns the participation status of the user (Constants declared in com.llwork.external.IConstants)
|
IRecipient[] |
getRecipients()
Returns the participants of the appointment/meeting
|
java.util.Date |
getStart()
Returns the start date and time
|
java.lang.String |
getSubject()
Returns the subject
|
boolean |
hasAttachments()
Returns if there are any attachments
|
boolean |
isAllDay()
Is startdate without time so valid for the full day
|
void |
setAllDay(boolean allDay)
Sets if startdate is without time so valid for the full day
|
void |
setBody(java.lang.String body)
Sets additional appointment/meeting information
|
void |
setDuration(int durationInMinutes)
Sets the planned duration in minutes of the appointment/meeting
|
void |
setHasAttachments(boolean hasAttachments)
Sets if there are any attachment
|
void |
setLocation(java.lang.String loaction)
Sets the location of the appointment/meeting
|
void |
setParticipationStatus(int participationStatus)
Sets the participation status of the user (Constants declared in com.llwork.external.IConstants)
|
void |
setStart(java.util.Date start)
Sets the start date and time
|
void |
setSubject(java.lang.String subject)
Sets subject
|
getId, setId
java.lang.String getSubject()
void setSubject(java.lang.String subject)
subject
- subjectjava.lang.String getBody()
void setBody(java.lang.String body)
body
- additional informationjava.lang.String getLocation()
void setLocation(java.lang.String loaction)
loaction
- the locationjava.util.Date getStart()
void setStart(java.util.Date start)
start
- the start date and timeint getDuration()
void setDuration(int durationInMinutes)
durationInMinutes
- the planned duration in minutesIRecipient[] getRecipients()
void addRecipient(IRecipient recipient)
recipient
- the participantsvoid setParticipationStatus(int participationStatus)
participationStatus
- ParticipationStatus to setint getParticipationStatus()
void setHasAttachments(boolean hasAttachments)
hasAttachments
- is there any attachmentboolean hasAttachments()
void setAllDay(boolean allDay)
allDay
- startdate without time so valid for the full dayboolean isAllDay()