Aantal reorganisaties om implementatie van macro's ondubbelzinnig duidelijk te maken.

This commit is contained in:
2011-02-07 18:42:18 +00:00
parent aef86668c6
commit 0e8c212999
24 changed files with 95 additions and 160 deletions

View File

@@ -1,21 +0,0 @@
package pm.event;
import pm.action.Action;
public class Event {
protected Target type;
protected Action action;
public Event(Target type, Action action) {
this.type = type;
this.action = action;
}
public Target getType() {
return type;
}
public Action getAction() {
return action;
}
}

View File

@@ -1,5 +0,0 @@
package pm.event;
public enum Target {
MAIN, DEVICE, APPLICATION;
}