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