ThreeFigureMinuetThing.java
1    /* 
2     * Nine note line created for assignment one 
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();
13               note.play();
14               note.lp();
15               note.play();
16               note.rp(2);
17               note.s2();
18               note.play();
19               note.lp();
20               note.play();
21               note.lp();
22               note.play();
23               note.rp();
24               note.play();
25               note.x2();
26               note.rp();
27               note.play();
28               note.x3();
29               note.play();
30               note.s3();
31           }
32       }
33