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