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

15
java/src/pm/Macro.java Normal file
View File

@@ -0,0 +1,15 @@
package pm;
import pm.macro.Event;
public class Macro {
protected Event[] eventArray;
public Macro(Event... eventArray) {
this.eventArray = eventArray;
}
public int count() {
return eventArray.length;
}
}