com.vaadin.v7.ui.components.calendar.event.CalendarEditableEventProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-server Show documentation
Show all versions of vaadin-compatibility-server Show documentation
Vaadin 7 compatibility package for Vaadin 8
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.ui.components.calendar.event;
/**
* An event provider which allows adding and removing events.
*
* @since 7.1.0
* @author Vaadin Ltd.
*/
@Deprecated
public interface CalendarEditableEventProvider extends CalendarEventProvider {
/**
* Adds an event to the event provider.
*
* @param event
* The event to add
*/
void addEvent(CalendarEvent event);
/**
* Removes an event from the event provider.
*
* @param event
* The event
*/
void removeEvent(CalendarEvent event);
}