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