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