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