ThreeFigureMinuetThing.java
1    /* 
2     * Nine note line created by joining three JSB minuet figures. 
3     */
4    package mmw;
5    import note.SNote;
6    
7    public class ThreeFigureMinuetThing {
8        public static void main(String[] args) {
9            SNote note = new SNote();
10   
11           note.text();
12   
13           note.play();
14           note.lp();
15           note.play();
16           note.lp();
17           note.play();
18           note.rp(2);
19   
20           note.s2();
21           note.play();
22           note.lp();
23           note.play();
24           note.lp();
25           note.play();
26           note.x2();
27           note.rp();
28           note.s2();
29           note.play();
30           note.x2();
31           note.rp();
32           note.play();
33   
34           note.x3();
35           note.play();
36           note.s2();
37   
38   
39   
40   
41   
42   
43   
44   
45   
46       }
47       }
48