package schedframe.scheduling.plugin; import java.util.HashMap; import java.util.Map; import schedframe.PluginConfiguration; import schedframe.events.EventType; public class SchedulingPluginConfiguration implements PluginConfiguration { private Map events; public SchedulingPluginConfiguration(){ this.events = new HashMap(2); } public void addServedEvent(EventType eventType, Object argument){ events.put(eventType, argument); } public Map getServedEvents() { return events; } }