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

@@ -0,0 +1,7 @@
package pm.macro;
import pm.Button;
public interface Event {
public Button button = null;
}

View File

@@ -0,0 +1,12 @@
package pm.macro.event;
import pm.Button;
import pm.macro.Event;
public class Hold implements Event {
public Button button;
public Hold(Button button) {
this.button = button;
}
}

View File

@@ -0,0 +1,12 @@
package pm.macro.event;
import pm.Button;
import pm.macro.Event;
public class Press implements Event {
public Button button;
public Press(Button button) {
this.button = button;
}
}

View File

@@ -0,0 +1,12 @@
package pm.macro.event;
import pm.Button;
import pm.macro.Event;
public class Release implements Event {
public Button button;
public Release(Button button) {
this.button = button;
}
}