Ignore:
Timestamp:
09/24/14 15:51:26 (11 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/schedframe/scheduling/plugin/SchedulingPluginConfiguration.java

    r477 r1447  
    55 
    66import schedframe.PluginConfiguration; 
    7 import schedframe.events.scheduling.SchedulingEventType; 
     7import schedframe.events.EventType; 
    88 
    99public class SchedulingPluginConfiguration implements PluginConfiguration { 
    1010         
    11         private Map<SchedulingEventType, Object> events; 
     11        private Map<EventType, Object> events; 
    1212 
    1313        public SchedulingPluginConfiguration(){ 
    14                 this.events = new HashMap<SchedulingEventType, Object>(); 
     14                this.events = new HashMap<EventType, Object>(2); 
    1515        } 
    1616         
    17         public void addServedEvent(SchedulingEventType eventType, Object argument){ 
     17        public void addServedEvent(EventType eventType, Object argument){ 
    1818                events.put(eventType, argument); 
    1919        } 
    2020         
    21         public Map<SchedulingEventType, Object> getServedEvents() { 
     21        public Map<EventType, Object> getServedEvents() { 
    2222                return events; 
    2323        } 
Note: See TracChangeset for help on using the changeset viewer.