Package org.jboss.as.cli.gui.metacommand

Examples of org.jboss.as.cli.gui.metacommand.ChooseScriptAction


    public ScriptMenu(CliGuiContext cliGuiCtx) {
        super("Scripts");
        this.cliGuiCtx = cliGuiCtx;
        setMnemonic(KeyEvent.VK_S);

        JMenuItem chooseScript = new JMenuItem(new ChooseScriptAction(this, cliGuiCtx));
        chooseScript.setMnemonic(KeyEvent.VK_C);
        add(chooseScript);

        addSeparator();
        readPreviouslyRun();
View Full Code Here

TOP

Related Classes of org.jboss.as.cli.gui.metacommand.ChooseScriptAction

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.