/home/ffrigin/NetBeansProjects/CS1/src/mmw/TwoFigureMinuetThing.java
 1 /*
 2  * Ten note line created by joining two JSB minute figures.
 3  */
 4 package mmw;
 5 
 6 import note.SNote;
 7 
 8 /**
 9  *
10  * @author ffrigin
11  */
12 public class TwoFigureMinuetThing {
13 
14     /**
15      * @param args the command line arguments
16      */
17     
18     public static void main(String[] args) {
19         SNote note = new SNote();
20         note.text();
21         note.play();
22         note.s2(); note.lp(4); note.play();
23         note.rp(1); note.play();
24         note.rp(1); note.play();
25         note.rp(1); note.play();
26         note.rp(1); note.play();
27         note.lp(1); note.play();
28         note.lp(1); note.play();
29         note.rp(1); note.play();
30         note.x2(); note.rp(1); note.play();
31         note.untext();
32         // TODO code application logic here
33     }
34     
35 }
36