TwoFigureMinuetThing.java
1    /* 
2    * Copy the notes from two melodic sequences while using notes 
3     */
4    
5    package mmw;
6    
7    import composer.SComposer;
8    import note.SNote;
9    
10   public class TwoFigureMinuetThing {
11       public static void main(String[] args){
12           SComposer sc = new SComposer();
13           sc.text();
14           sc.mms_35_JSB_M9();
15           sc.mms_35_JSB_M13();
16           SNote note = new SNote();
17           note.text();
18           note.play();
19           note.rp(3); note.s2(); note.play();
20           note.rp(); note.play();
21           note.lp(6); note.play();
22           note.rp(); note.play();
23           note.rp(); note.play();
24           note.lp(); note.play();
25           note.lp(); note.play();
26           note.rp(); note.play();
27           note.rp(); note.x2(); note.play();
28       }
29   
30   }
31