We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.ui.components.calendar.event.
Interface CalendarEditableEventProvider
-
All Superinterfaces:
All Known Implementing Classes:
public interface CalendarEditableEventProvider extends CalendarEventProvider
An event provider which allows adding and removing events
Since:
7.1.0
Author:
Vaadin Ltd.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.ui.components.calendar.event.CalendarEventProvider
CalendarEventProvider.EventSetChangeEvent, CalendarEventProvider.EventSetChangeListener, CalendarEventProvider.EventSetChangeNotifier
-
-
Method Summary
All Methods Modifier and Type Method Description void
addEvent(CalendarEvent event)
Adds an event to the event provider
void
removeEvent(CalendarEvent event)
Removes an event from the event provider
-
Methods inherited from interface com.vaadin.ui.components.calendar.event.CalendarEventProvider
getEvents
-
-
-
-
Method Detail
-
addEvent
void addEvent(CalendarEvent event)
Adds an event to the event provider
Parameters:
event
- The event to add
-
removeEvent
void removeEvent(CalendarEvent event)
Removes an event from the event provider
Parameters:
event
- The event
-
-