ThreeFigureMinuetThing.java
/* 
 * Nine note line created by joining two JSB minuet figures. 
 */
package mmw;
import composer.SComposer;
import note.SNote;

public class ThreeFigureMinuetThing {
    public static void main(String[] args) {
        SComposer sc = new SComposer();
        SNote note= new SNote();
        sc.text();
        note.text();
        sc.mms_33_JSB_M2();
        sc.mms_35_JSB_M13();
        sc.mms_31_JSB_M1();


        note.rp(7); note.play();
        note.s2(); note.lp(2); note.play();
        note.rp(1); note.play();
        note.rp(1); note.play();
        note.rp(1); note.play();
        note.lp(1); note.play();
        note.lp(1); note.play();
        note.lp(1); note.play();
        note.rp(1); note.play();
        note.x2(); note.rp(1); note.play();


    }
}