/home/sjenks/NetBeansProjects/CS1/src/mmw/AfterJSB.java
 1 /*
 2  * Program to create a melody based off of JSB melodic sequencesin the Modular 
 3  * Melody World. Has to incooperate 5 melodic sequences as well as exactly 40
 4  * notes. The last notes has to be a C.
 5  */
 6 package mmw;
 7 
 8 import composer.SComposer;
 9 
10 /**
11  *
12  * @author sjenks
13  */
14 public class AfterJSB {
15 
16     /**
17      * @param args the command line arguments
18      */
19     public static void main(String[] args) {
20         SComposer c = new SComposer();
21         c.text();
22         c.mms_33_JSB_M4();
23         c.mms_35_JSB_M10();
24         c.mms_34_JSB_M6();
25         c.mms_35_JSB_M10();
26         c.mms_36_JSB_M14();
27         c.mms_33_JSB_M4();
28         c.mms_34_JSB_M6();
29         c.mms_34_JSB_M6();
30         c.mms_35_JSB_M10();
31         c.mms_31_JSB_M1();
32         c.untext();
33   
34     }
35     
36     private static void space (SComposer c) {
37         c.untext(); c.rest(2); c.text();
38     }
39 }
40