mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-04 12:17:41 +08:00
Add the 'removeAll' method to the CalendarEventProvider #751
This commit is contained in:
parent
8e4200ebf3
commit
6f932a35b3
@ -23,11 +23,28 @@ import java.util.List;
|
||||
|
||||
public interface CalendarEventProvider {
|
||||
|
||||
/**
|
||||
* Adds {@link CalendarEvent} to the event provider list.
|
||||
* <p>
|
||||
* Not supported by {@link EntityCalendarEventProvider}, use datasource for changing data items.
|
||||
*
|
||||
* @param event calendar event
|
||||
*/
|
||||
void addEvent(CalendarEvent event);
|
||||
|
||||
/**
|
||||
* Removes {@link CalendarEvent} from the event provider list.
|
||||
* <p>
|
||||
* Not supported by {@link EntityCalendarEventProvider}, use datasource for changing data items.
|
||||
*
|
||||
* @param event calendar event
|
||||
*/
|
||||
void removeEvent(CalendarEvent event);
|
||||
|
||||
/**
|
||||
* Removes all {@link CalendarEvent} in the list event provider.
|
||||
* Removes all {@link CalendarEvent} in the event provider list.
|
||||
* <p>
|
||||
* Not supported by {@link EntityCalendarEventProvider}, use datasource for changing data items.
|
||||
*/
|
||||
void removeAllEvents();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user