ThreeFigureMinuetThing.java
/* 
* Nine note line created by joining three JSB minuet figures. 
*/

package mmw;
import note.SNote;

public class ThreeFigureMinuetThing {
    public static void main(String[] args) {
        SNote Han = new SNote();
        Han.text();
        Han.play();
        Han.lp(); Han.play();
        Han.lp(); Han.play();
        Han.s2(); Han.rp(2); Han.play();
        Han.lp(); Han.play();
        Han.play();
        Han.x2(); Han.rp(); Han.play();
        Han.x3(); Han.play();

    }

    }