/home/akc/NetBeansProjects/CS1/src/mmw/AfterJSB.java |
1 /* 2 * A program to play a melody composed exclusively of the figures available in 3 * MMW which were taken from JSB minutes, subject to the following additional 4 * constraints: 5 * 1. The melody will consist of exactly 40 notes. 6 * 2. The melody will make use of exactly 5 different modular melodic sequences 7 * (all drawn from the JSB modular melodic sequences). 8 * 3. The final note will be a long C note. 9 */ 10 package mmw; 11 12 import composer.SComposer; 13 14 /** 15 * 16 * @author akc 17 */ 18 public class AfterJSB { 19 20 /** 21 * @param args the command line arguments 22 */ 23 public static void main(String[] args) { 24 SComposer sc = new SComposer(); 25 sc.text(); 26 sc.mms_35_JSB_M9(); 27 sc.mms_35_JSB_M9(); 28 sc.mms_36_JSB_M14(); 29 sc.mms_36_JSB_M14(); 30 sc.mms_813_JSB_G3(); 31 sc.mms_34_JSB_M6(); 32 sc.mms_31_JSB_M1(); 33 } 34 35 } 36