Package org.jitterbit.ui.text

Examples of org.jitterbit.ui.text.ToggleCommentAction


        area.installShortCut("showLineNumbers", shortCut, a);
        return a;
    }
   
    private Action installToggleCommentAction(ExpressionArea area) {
        Action a = new ToggleCommentAction(area.getTextPane());
        KeyStroke shortCut = KeyUtils.getCtrlDown(KeyEvent.VK_SLASH);
        a.putValue(Action.ACCELERATOR_KEY, shortCut);
        area.installShortCut("toggleComment", shortCut, a);
        return a;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.text.ToggleCommentAction

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.