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 n = new SNote();
10           n.text();
11           n.play();
12           n.lp();
13           n.play();
14           n.lp();
15           n.play();
16           n.rp(2);
17           n.s2();
18           n.play();
19           n.lp();
20           n.play();
21           n.lp();
22           n.play();
23           n.rp();
24           n.play();
25           n.x2();
26           n.rp();
27           n.play();
28           n.x3();
29           n.play();
30   
31       }
32   
33   }
34   
35   
36