to.etc.domui.component.agenda
Interface ScheduleItem

All Known Implementing Classes:
BasicScheduleItem

public interface ScheduleItem

A single "appointment" in the schedule interface.

Author:
Frits Jalvingh Created on Jun 27, 2007

Method Summary
 java.lang.String getDetails()
           
 java.util.Date getEnd()
          The end of the appointment.
 java.lang.String getID()
          An unique identifier that can be used to locate this appointment.
 java.lang.String getImageURL()
           
 java.lang.String getName()
          The short text describing this appointment (mandatory)
 java.util.Date getStart()
          The start of the appointment.
 java.lang.String getType()
          A short string describing the appointment type
 

Method Detail

getID

java.lang.String getID()
An unique identifier that can be used to locate this appointment.


getStart

java.util.Date getStart()
The start of the appointment.


getEnd

java.util.Date getEnd()
The end of the appointment.


getName

java.lang.String getName()
The short text describing this appointment (mandatory)


getType

java.lang.String getType()
A short string describing the appointment type


getImageURL

java.lang.String getImageURL()

getDetails

java.lang.String getDetails()