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