Revision 104,
439 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[104] | 1 | package test.rewolucja.task; |
---|
| 2 | |
---|
| 3 | import test.rewolucja.GSSIMJobInterface; |
---|
| 4 | |
---|
| 5 | public 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.