/** * Display the jMusic Part in a CPN window. At present only the first phrase in the part will be * displayed. * * @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); }
/** * Display the jMusic Part in a CPN window. 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); }