/home/kchan2/NetBeansProjects/CS1/src/mmw/AfterJSB.java |
1 /* 2 * Program to play a melody composed exclusively of the figures available in 3 * MMW which were taken from JSB minuets. 4 */ 5 6 package mmw; 7 8 import composer.SComposer; 9 10 /** 11 * 12 * @author kchan2 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_31_JSB_M1(); 23 c.mms_31_JSB_M1(); 24 c.mms_35_JSB_M9(); 25 c.mms_35_JSB_M10(); 26 c.mms_35_JSB_M9(); 27 c.mms_35_JSB_M10(); 28 c.mms_88_JSB_G1(); 29 c.mms_89_JSB_G2(); 30 c.mms_31_JSB_M1(); 31 } 32 33 } 34