ThreeFigureMinuetThing.java
1    /* 
2     * Nine note line created by joining three JSB minuet figures. 
3     
4     */
5    package mmw;
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(1);
14           note.play();
15           note.lp(1);
16           note.play();
17           note.rp(2); note.s2();
18           note.play();
19           note.lp();note.play(); note.lp();note.play();
20           note.rp();note.play();
21           note.rp();note.x2();note.play();
22           note.x3();note.play();
23   
24   
25   
26   
27   
28       }
29   }