com.webmethods.caf.faces.data.calendar
Interface ICalendarEvent

All Superinterfaces:
Comparable
All Known Implementing Classes:
CalendarEvent

public interface ICalendarEvent
extends Comparable

Calendar event interface to access calendar event information.


Method Summary
 Date getEndDate()
          Get the date this event ends on.
 String getEventBody()
          Set the text of the event body.
 String getEventHeader()
          Get event header for this event.
 String getEventType()
          Get event type that for this event.
 Date getStartDate()
          Get the date this event starts on.
 boolean isAllDay()
          Is this event to start and end on the same date as a Day unit.
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getStartDate

Date getStartDate()
Get the date this event starts on.

Returns:
The Date this event will start.

getEndDate

Date getEndDate()
Get the date this event ends on.

Returns:
The Date this event will end.

isAllDay

boolean isAllDay()
Is this event to start and end on the same date as a Day unit.

Returns:
True then this event starts and ends the same date as a Day unit. Otherwise false.

getEventBody

String getEventBody()
Set the text of the event body. The description and information for this event.

Returns:
The event body of text.

getEventHeader

String getEventHeader()
Get event header for this event. May be used as a title or description of this event.

Returns:
The event header text.

getEventType

String getEventType()
Get event type that for this event. A user defined value for defining the type of event.

Returns:
A user defined type for this event.