source: xssim/src/schedframe/scheduling/events/TaskFailedEvent.java @ 104

Revision 104, 324 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling.events;
2
3import java.util.List;
4
5public class TaskFailedEvent extends SchedulingEvent{
6       
7        protected List<String> epr;
8       
9        public TaskFailedEvent(List<String> list){
10                super(SchedulingEventType.TASK_FAILED);
11                this.epr = list;
12        }
13       
14        public List<String> getReservations(){
15                return this.epr;
16        }
17}
Note: See TracBrowser for help on using the repository browser.