ThreeFigureMinuetThing.java
1    package mmw;
2    import composer.SComposer;
3    import note.SNote;
4    
5    public class ThreeFigureMinuetThing {
6        public static void main (String[] args) {
7            SNote note = new SNote();
8            SComposer sc = new SComposer();
9            note.text();
10           note.play();
11           note.lp(1); note.play();
12           note.lp(1);note.play();
13           note.rp(2);note.s2();note.play();
14           note.lp(1);note.play();
15           note.lp(1);note.play();
16           note.rp(2);note.play();
17           note.x2();note.rp(1);note.play();
18           note.lp();note.play();
19           System.out.println();
20           sc.mms_33_JSB_M2();
21           sc.mms_35_JSB_M13();
22           sc.mms_31_JSB_M1();
23           System.out.println();
24   
25   
26   
27   
28   
29       }
30   }
31