Package com.visitrend.ndvis.colormapper.actions

Examples of com.visitrend.ndvis.colormapper.actions.NewQueryAction


    private JMenuBar makeMenuBar() {
        JMenuBar menuBar = new JMenuBar();

        JMenu fileMenu = new JMenu("File");
        NewQueryAction newQueryAction = new NewQueryAction(this);
        fileMenu.add(newQueryAction);
        OpenQueryAction openQueryAction = new OpenQueryAction(this);
        fileMenu.add(openQueryAction);
        SaveQueryAction saveQueryAction = new SaveQueryAction(this);
        fileMenu.add(saveQueryAction);
View Full Code Here

TOP

Related Classes of com.visitrend.ndvis.colormapper.actions.NewQueryAction

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.