ThreeFigureMinuetThing.java
1    /* 
2     * Nine note line created by using nine notes. 
3     */
4    package mmw;
5    import note.SNote;
6    
7    public class ThreeFigureMinuetThing {
8        public static void main(String[] args) {
9            SNote bach = new SNote();
10           bach.text();
11           bach.play(); bach.lp(); bach.play(); bach.lp(); bach.play();
12           bach.rp(2); bach.s2(); bach.play(); bach.lp(); bach.play(); bach.lp(); bach.play();
13           bach.rp(); bach.play(); bach.rp(); bach.x2(); bach.play(); bach.x3(); bach.play();
14   
15       }
16   }