ThreeFigureMinuetThing.java
1    /* 
2    * Nine note line created by joining three JSB minuet figures. 
3    */
4    
5    package mmw;
6    
7    import composer.SComposer;
8    import note.SNote;
9    
10   public class ThreeFigureMinuetThing {
11       public static void main(String[] args) {
12   
13   
14           SNote note = new SNote();
15           /* (C,1) */
16           note.text();
17           note.play();
18           /* (B,1) */
19           note.lp();
20           note.play();
21           /* (A,1) */
22           note.lp();
23           note.play();
24           /* (C,1/2) */
25           note.rp();
26           note.rp();
27           /* Back to (C,1) to get it to (B,1/2) */
28           note.s2();
29           note.play();
30           /* (B,1/2) */
31           note.lp();
32           note.play();
33           /* (A,1/2) */
34           note.lp();
35           note.play();
36           /* (C,1) */
37           note.rp();
38           note.play();
39           /* (C,3) */
40           note.lp();
41           note.rp();
42           note.rp();
43           note.x2();
44           note.play();
45           note.x3();
46           note.play();
47   
48       }
49   
50   }
51   
52   
53