source: xssim/branches/tpiontek/src/test/rewolucja/task/TaskEvent.java @ 104

Revision 104, 439 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.rewolucja.task;
2
3import test.rewolucja.GSSIMJobInterface;
4
5public class TaskEvent {
6
7        protected GSSIMJobInterface<?> task;
8        protected String resourceName;
9       
10        public TaskEvent(GSSIMJobInterface<?> task,
11                         String resourceName) {
12                super();
13                this.task = task;
14                this.resourceName = resourceName;
15        }
16       
17        public GSSIMJobInterface<?> getTask() {
18                return task;
19        }
20
21        public String getResourceName() {
22                return resourceName;
23        }
24       
25}
Note: See TracBrowser for help on using the repository browser.