Package jm.gui.wave

Examples of jm.gui.wave.WaveView


     * Display an au file stored on the disk.
     *
     * @param filename The name (and directory path) of the file.
     */
    public static void au(String filename) {
        new WaveView(filename);
    }
View Full Code Here


     * @param filename The name (and directory path) of the file.
     * @param xLoc     The horizontal position for the display.
     * @param yLoc     The vertical position for the display.
     */
    public static void au(String filename, int xLoc, int yLoc) {
        new WaveView(filename, xLoc, yLoc);
    }
View Full Code Here

TOP

Related Classes of jm.gui.wave.WaveView

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.