AfterJSB.java
1    package mmw;
2    
3    import composer.SComposer;
4    import note.SNote;
5    public class AfterJSB {
6        public static void main(String[] args) {
7            SComposer customJSB = new SComposer();
8            SNote note = new SNote();
9            customJSB.text();
10           note.text();
11           customJSB.mms_35_JSB_M12();
12           customJSB.mms_35_JSB_M13();
13           customJSB.mms_35_JSB_M10();
14           customJSB.mms_35_JSB_M11();
15           customJSB.mms_35_JSB_M9();
16           customJSB.mms_35_JSB_M10();
17           customJSB.mms_35_JSB_M11();
18           customJSB.mms_35_JSB_M12();
19           note.x5(); note.play();
20       }
21   
22   
23   }
24