Zeer veel aanpassingen:

- omslachtigheden verbeterd
- netwerking gefixt
- ...
This commit is contained in:
2011-05-08 13:38:23 +00:00
parent f5a555adbc
commit e135ea5a6d
39 changed files with 661 additions and 549 deletions

View File

@@ -4,13 +4,12 @@ import pm.Event;
import pm.value.Action;
import pm.value.Target;
public class Task implements Event {
public class Task extends Event {
protected Action action;
protected Target target;
public Task(Action action, Target target) {
super(target);
this.action = action;
this.target = target;
}
public Task(Action action) {
@@ -20,8 +19,4 @@ public class Task implements Event {
public Action getAction() {
return action;
}
public Target getTarget() {
return target;
}
}