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