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