ThreeFigureMinuetThing.java
1    
2    /* 
3     * Nine note line created by joining three JSB minuet figures. 
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();
14           note.play();
15           note.lp(); note.play();
16           note.lp(); note.play();
17           note.rp(); note.rp();
18           System.out.println();
19           note.s2(); note.play();
20           note.lp(); note.play();
21           note.lp(); note.play();
22           note.rp(); note.play();
23           note.rp(); note.x2(); note.play();
24           System.out.println();
25           note.x3(); note.play();
26   
27       }
28   }
29