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