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