source: DCWoRMS/trunk/src/schedframe/events/Event.java @ 477

Revision 477, 253 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.events;
2
3import schedframe.events.scheduling.EventReason;
4
5public interface Event {
6       
7        public EventType getType();
8       
9        public String getSource();
10       
11        public int getTag();
12       
13        public Object getData();
14       
15        public EventReason getReason();
16}
Note: See TracBrowser for help on using the repository browser.