All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.v7.ui.components.calendar.event.CalendarEditableEventProvider Maven / Gradle / Ivy

The newest version!
/*
 * 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy