ThreeFigureMinuetThing.java
1    /* 
2     * Nine note line created by joining three JSB minuet figures. 
3     */
4    
5    package mmw;
6    
7    import note.SNote;
8    
9    public class ThreeFigureMinuetThing {
10   
11       public static void main(String[] args) {
12           SNote note = new SNote();
13           note.text();
14           note.play();
15           note.lp(); note.play();
16           note.lp(); note.play();
17           System.out.println();
18           note.rp(2); note.s2(); note.play();
19           note.lp(); note.play();
20           note.lp(); note.play();
21           note.rp(); note.play();
22           note.rp(); note.x2(); note.play();
23           System.out.println();
24           note.x3(); note.play();
25           System.out.println();
26       }
27   }
28