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