ThreeFigureMinuetThing.java
1    package mmw;
2    import composer.SComposer;
3    import jdk.jshell.Snippet;
4    import note.SNote;
5    import note.ListOfAvailableNotes;
6    
7    import javax.swing.plaf.synth.SynthOptionPaneUI;
8    
9    public class ThreeFigureMinuetThing {
10   
11       public static void main(String[] args) {
12           SNote sn = new SNote();
13           sn.text();
14   
15           //sn.s2();
16           sn.play(); //c
17           sn.lp(); sn.play(); //b
18           sn.lp(); sn.play();//a
19           System.out.println();
20   
21           sn.rp(2); sn.s2(); sn.play();//c
22           sn.lp(); sn.play();//b
23           sn.lp(); sn.play();//a
24           sn.rp(); sn.play();//b
25           sn.rp(); sn.x2(); sn.play();//c
26           System.out.println();
27   
28   
29           sn.x3(); sn.play(); //3
30   
31   
32   
33   
34   
35       }
36   
37   }
38