ThreeFigureMinuetThing.java
1    package mmw;
2    import composer.SComposer;
3    
4    import note.SNote;
5    
6    public class ThreeFigureMinuetThing {
7    
8    
9        public static void main(String[] args) {
10          SComposer sc = new SComposer();
11     /* 
12           sc.text(); 
13           sc.mms_33_JSB_M2(); 
14           sc.mms_35_JSB_M13(); 
15           sc.mms_31_JSB_M1(); 
16   */
17   
18          SNote note = new SNote();
19   note.text();
20   
21   note.beginScore();
22   
23            note.play();
24   
25           note.lp(1);
26           note.play();
27   
28           note.lp(1);
29           note.play();
30   
31           note.rp(2);
32         note.s2();
33           note.play();
34   
35           note.lp(1);
36           note.play();
37   
38           note.lp(1);
39           note.play();
40   
41           note.rp(1);
42           note.play();
43   
44           note.rp(1);
45           note.x2();
46           note.play();
47   
48   
49           note.x3();
50           note.play();
51   
52       }
53   
54   
55   
56   
57   
58   
59   
60   
61   
62   
63   
64   
65   
66   
67   
68   
69   
70   
71   
72   
73   
74   }
75   
76   
77