ThreeFigureMinuetThing.java
1    /* 
2     * play the exact same sequence of nine notes that is played above dotted line 
3     */
4    package mmw;
5    import composer.SComposer;
6    import note.SNote;
7    
8    public class ThreeFigureMinuetThing {
9        public static void main(String[] args) {
10        /*   SComposer sc = new SComposer(); 
11           sc.text(); 
12           sc.mms_33_JSB_M2(); 
13           sc.mms_35_JSB_M13(); 
14           sc.mms_31_JSB_M1(); 
15    
16         */
17   
18           System.out.println("----------------------------------------------");
19   
20           SNote note = new SNote();
21           note.text();
22           note.play();
23           note.lp(); note.play();
24           note.lp(); note.play();
25           note.rp(); note.rp();
26           note.s2(); note.play();
27           note.lp(); note.play();
28           note.lp(); note.play();
29           note.rp(); note.play();
30           note.rp();
31           note.x2(); note.play();
32           note.x3(); note.play();
33   
34   
35   
36   
37       }
38   }