Package org.jitterbit.application.ui.text.editor

Examples of org.jitterbit.application.ui.text.editor.GotoLineNumberAction$Prompt


            }
        }
    }
   
    private Action installGoToLineAction(ExpressionArea area) {
        Action a = new GotoLineNumberAction(area.getTextPane());
        KeyStroke shortCut = KeyUtils.getCtrlDown(KeyEvent.VK_L);
        a.putValue(Action.ACCELERATOR_KEY, shortCut);
        area.installShortCut("gotoLine", shortCut, a);
        return a;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.text.editor.GotoLineNumberAction$Prompt

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.