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

eu.eurekabpo.primefaces.model.PremiumScheduleModel Maven / Gradle / Ivy

Go to download

Eureka-BPO PremiumSchedule - Schedule Component for Primefaces with premium FullCalendar features: Vertical Resource View and Timeline View

The newest version!
package eu.eurekabpo.primefaces.model;

import java.util.List;
import java.util.Set;

import org.primefaces.model.ScheduleEvent;
import org.primefaces.model.ScheduleModel;

public interface PremiumScheduleModel extends ScheduleModel {
	Set getKeys();

	void addEvent(Object key, ScheduleEvent event);

	List> getEvents(Object key);

	int getEventCount(Object key);

	void clear(Object key);
}