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