TwoFigureMinuetThing.java
1    /* 
2     * Ten note line created by joining two 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 TwoFigureMinuetThing {
10       public static void main(String[] args) throws InterruptedException {
11           SComposer sc = new SComposer();
12           SNote note = new SNote();
13           sc.text();
14           sc.mms_35_JSB_M10();
15           sc.mms_35_JSB_M13();
16   
17           TimeUnit.SECONDS.sleep(2);
18           System.out.println("Time To Recreate Using SNote");
19           note.text();
20           //M10
21           note.play();
22           note.lp(2); note.s2();note.play();
23           note.rp(); note.play();
24           note.rp(); note.play();
25           note.rp(); note.play();
26           //M13
27           note.lp(); note.play();
28           note.lp(); note.play();
29           note.lp(); note.play();
30           note.rp(); note.play();
31           note.rp();
32           note.x2(); note.play();
33   
34       }
35   }