/home/rkanin/NetBeansProjects/CS1/src/mmw/TwoFigureMinuetThing.java
 1 /*
 2  * Ten note line created by joining two JSB minuet figures.
 3  */
 4 package mmw;
 5 
 6 import composer.SComposer;
 7 import note.SNote;
 8 
 9 /**
10  *
11  * @author rkanin
12  */
13 public class TwoFigureMinuetThing {
14 
15     /**
16      * @param args the command line arguments
17      */
18     public static void main(String[] args) {
19         //SComposer sc = new SComposer();
20         //sc.text();
21         //sc.mms_35_JSB_M9();
22        // sc.mms_35_JSB_M13();
23        
24        SNote rich = new SNote();
25        rich.text();
26        rich.play();
27        rich.lp(4); rich.s2(); rich.play();
28        rich.rp(); rich.play();
29        rich.rp(); rich.play();
30        rich.rp(); rich.play();
31        rich.rp(); rich.play();
32        rich.lp(); rich.play();
33        rich.lp(); rich.play();
34        rich.rp(); rich.play();
35        rich.x2(); rich.rp(); rich.play();
36        System.out.println();
37       
38       
39         
40     }
41     
42 }
43