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