AfterBach.java
1    package mmw;
2    
3    import composer.SComposer;
4    
5    public class AfterBach {
6        public static void main(String[] args) {
7            SComposer bach = new SComposer();
8            bach.text();
9            System.out.println("bach.mms_34_JSB_M7..."); bach.mms_34_JSB_M7(); space(bach);
10           System.out.println("bach.mms_33_JSB_M4..."); bach.mms_33_JSB_M4(); space(bach);
11           System.out.println("bach.mms_34_JSB_M6..."); bach.mms_34_JSB_M6(); space(bach);
12           System.out.println("bach.mms_36_JSB_M15..."); bach.mms_36_JSB_M15(); space(bach);
13           System.out.println("bach.mms_33_JSB_M4..."); bach.mms_33_JSB_M4(); space(bach);
14           System.out.println("bach.mms_34_JSB_M7..."); bach.mms_34_JSB_M7(); space(bach);
15           System.out.println("bach.mms_34_JSB_M6..."); bach.mms_34_JSB_M6(); space(bach);
16           System.out.println("bach.mms_31_JSB_M1..."); bach.mms_31_JSB_M1(); space(bach);
17           System.out.println("bach.mms_34_JSB_M6..."); bach.mms_34_JSB_M6(); space(bach);
18           System.out.println("bach.mms_36_JSB_M15..."); bach.mms_36_JSB_M15(); space(bach);
19           System.out.println("bach.mms_31_JSB_M1..."); bach.mms_31_JSB_M1(); space(bach);
20   
21           bach.untext();
22       }
23       private static void space(SComposer bach) {
24           bach.untext(); bach.rest(); bach.text();
25       }
26   }
27