Package ca.nengo.ui.actions

Examples of ca.nengo.ui.actions.RunInteractivePlotsAction


    public static final String typeName = "Network";

    public static void constructSimulatorMenu(PopupMenuBuilder menu, UINetwork network) {
        menu.addSection("Run");
        menu.addAction(new RunSimulatorAction("Simulate " + network.getName(), network));
        menu.addAction(new RunInteractivePlotsAction(network));
    }
View Full Code Here


            }

            UINetwork network = (UINetwork) node;

            simulateAction = new RunSimulatorAction("Simulate " + network.getName(), network);
            interactivePlotsAction = new RunInteractivePlotsAction(network);
        } else {
            simulateAction = new DisabledAction("Simulate", "No object selected");
            interactivePlotsAction = new DisabledAction("Interactive Plots", "No object selected");
        }
View Full Code Here

TOP

Related Classes of ca.nengo.ui.actions.RunInteractivePlotsAction

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.