Package jm.gui.cpn

Examples of jm.gui.cpn.Notate


     * Display the jMusic Phrase in a CPN window
     *
     * @param Phrase
     */
    public static void notate(Phrase phr) {
        new Notate(phr, 0, 0);
    }
View Full Code Here


     * Display the jMusic Phrase in a CPN window
     *
     * @param Phrase
     */
    public static void notation(Phrase phr) {
        new Notate(phr, 0, 0);
    }
View Full Code Here

     * @param Phrase
     * @param xLoc   the left-right location of the window
     * @param yLoc   the up-down location of the window
     */
    public static void notate(Phrase phr, int xLoc, int yLoc) {
        new Notate(phr, xLoc, yLoc);
    }
View Full Code Here

     * @param Phrase
     * @param xLoc   the left-right location of the window
     * @param yLoc   the up-down location of the window
     */
    public static void notation(Phrase phr, int xLoc, int yLoc) {
        new Notate(phr, xLoc, yLoc);
    }
View Full Code Here

     * At presetn on the first phrase of the part will be displayed.
     *
     * @param Part
     */
    public static void notate(Part p) {
        new Notate(p.getPhrase(0), 0, 0);
    }
View Full Code Here

     * At presetn on the first phrase of the part will be displayed.
     *
     * @param Part
     */
    public static void notation(Part p) {
        new Notate(p.getPhrase(0), 0, 0);
    }
View Full Code Here

     * @param Part
     * @param xLoc the left-right location of the window
     * @param yLoc the up-down location of the window
     */
    public static void notate(Part p, int xLoc, int yLoc) {
        new Notate(p.getPhrase(0), xLoc, yLoc);
    }
View Full Code Here

     * @param Part
     * @param xLoc the left-right location of the window
     * @param yLoc the up-down location of the window
     */
    public static void notation(Part p, int xLoc, int yLoc) {
        new Notate(p.getPhrase(0), xLoc, yLoc);
    }
View Full Code Here

     * At presetn on the first phrase of each part in the score will be displayed.
     *
     * @param Score
     */
    public static void notate(Score s) {
        new Notate(s, 0, 0);
    }
View Full Code Here

     * At presetn on the first phrase of each part in the score will be displayed.
     *
     * @param Score
     */
    public static void notation(Score s) {
        new Notate(s, 0, 0);
    }
View Full Code Here

TOP

Related Classes of jm.gui.cpn.Notate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.