AfterJSB.java
1    /* 
2    *Write a program called AfterJSB within the mmw package to play a melody composed exclusively of the figures available in MMW which were taken from JSB minutes, subject to 
3    * The following additional constraints: 
4        The melody will consist of exactly 40 notes.-- 
5        The melody will make use of exactly 5 different modular melodic sequences (all drawn from the JSB modular melodic sequences). You may need to use one or more of these 5 more than once!-- 
6        The final note will be a long C note.-- 
7     */
8    
9    package mmw;
10   
11   import composer.SComposer;
12   import note.SNote;
13   
14   public class AfterJSB {
15       public static void main(String [] args){
16           SComposer NotBach = new SComposer();
17            NotBach.text();
18            NotBach.mms_35_JSB_M12();
19            NotBach.mms_35_JSB_M13();
20            //NotBach.x2();
21            NotBach.mms_36_JSB_M14();
22            NotBach.mms_36_JSB_M15();
23            NotBach.x2(2);
24            NotBach.mms_88_JSB_G1();
25            NotBach.mms_35_JSB_M13();
26            NotBach.untext();
27       }
28   }
29