Class LocalVEvent
- java.lang.Object
-
- org.ametys.plugins.calendar.icsreader.LocalVEvent
-
public class LocalVEvent extends Object
A holder created principally for recurrent events, so we can have one iteration of this event, using a start and end date of this iteration
-
-
Constructor Summary
Constructors Constructor Description LocalVEvent(VEvent event, Date start, Date end, Tag tag)
Store an event and a start/end date, the currentDay is used when an event is on multiple days, so we know which day is the one used here
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getEnd()
return the end date of this iterationVEvent
getEvent()
return the eventDate
getStart()
return the start date of this iterationTag
getTag()
return the tag used for this ICS
-
-
-
Constructor Detail
-
LocalVEvent
public LocalVEvent(VEvent event, Date start, Date end, Tag tag)
Store an event and a start/end date, the currentDay is used when an event is on multiple days, so we know which day is the one used here- Parameters:
event
- the eventstart
- start of the iteration of this event (around the current day)end
- end of the iteration of this event (around the current day)tag
- the tag used for this ICS
-
-