AfterJSB.java
1    /* 
2     * This program is going to play a melody composed exclusively 
3     * of the figures available in MMW which were taken from 
4     * JSB minutes, subject to specif constraints. 
5     */
6    
7    package mmw;
8    
9    import composer.SComposer;
10   
11   public class AfterJSB {
12   
13       public static void main (String[] args) {
14           SComposer c = new SComposer();
15           c.text();
16   
17           c.mms_36_JSB_M14();
18           c.mms_36_JSB_M14();
19           c.mms_36_JSB_M14();
20           c.mms_35_JSB_M9();
21           c.mms_34_JSB_M6();
22           c.mms_33_JSB_M2();
23           c.mms_33_JSB_M2();
24           c.mms_33_JSB_M2();
25           c.mms_33_JSB_M2();
26           c.mms_31_JSB_M1();
27   
28       }
29       private static void space (SComposer c) {
30           c.untext(); c.note().rest(2); c.text();
31       }
32   }
33