org.wicketstuff.calendarviews.model
Interface IEvent
- All Known Subinterfaces:
- ICategorizedEvent
- All Known Implementing Classes:
- BasicCategorizedEvent, BasicEvent
public interface IEvent
The main model-object interface for using CalendarViews - this is
what maps your model to the CalendarViews model. Your domain model
object can either implement this interface directly, or you can use
a DTO of sorts and convert between the two.
- Author:
- Jeremy Thomerson
|
Method Summary |
java.util.Date |
getEndTime()
|
java.util.Date |
getStartTime()
|
java.lang.String |
getTitle()
|
boolean |
isAllDayEvent()
Is this event an all day event or does it have a specific start
and end time throughout the day? |
getTitle
java.lang.String getTitle()
getStartTime
java.util.Date getStartTime()
getEndTime
java.util.Date getEndTime()
isAllDayEvent
boolean isAllDayEvent()
- Is this event an all day event or does it have a specific start
and end time throughout the day?
- Returns:
- true if the event lasts all day (has no hour / minute start time)
always false if the event is a multi-day event
Copyright © 2010. All Rights Reserved.