Examples of GoToLineAction


Examples of com.eviware.soapui.support.xml.actions.GoToLineAction

        } else {
            editArea.getInputMap().put(KeyStroke.getKeyStroke("ctrl F"), findAndReplaceDialog);
        }
        popup.add(findAndReplaceDialog);
        popup.addSeparator();
        goToLineAction = new GoToLineAction(editArea, "Go To Line");
        enableLineNumbersAction = new EnableLineNumbersAction(scrollPane, "Show Line Numbers");

        popup.add(goToLineAction);
        popup.add(enableLineNumbersAction);
View Full Code Here

Examples of com.eviware.soapui.support.xml.actions.GoToLineAction

    public static RSyntaxTextArea addDefaultActions(RSyntaxTextArea editor, RTextScrollPane scrollPane, boolean readOnly) {
        JPopupMenu popupMenu = editor.getPopupMenu();

        SaveXmlTextAreaAction saveXmlTextAreaAction = new SaveXmlTextAreaAction(editor, "Save");
        EnableLineNumbersAction enableLineNumbersAction = new EnableLineNumbersAction(scrollPane, "Toggle Line Numbers");
        GoToLineAction goToLineAction = new GoToLineAction(editor, "Go To Line");

        int cnt = popupMenu.getComponentCount();
        for (int i = cnt - 1; i >= 0; i--) {
            if (popupMenu.getComponent(i) instanceof JSeparator) {
                popupMenu.remove(popupMenu.getComponent(i));
View Full Code Here

Examples of com.eviware.soapui.support.xml.actions.GoToLineAction

    protected void buildPopup(JPopupMenu inputPopup, RSyntaxTextArea editArea) {
        this.inputPopup = inputPopup;
        validateXmlAction = new ValidateMessageXmlAction();
        saveXmlTextAreaAction = new SaveXmlTextAreaAction(editArea, "Save");
        enableLineNumbersAction = new EnableLineNumbersAction(editorScrollPane, "Toggle Line Numbers");
        goToLineAction = new GoToLineAction(editArea, "Go To Line");
        findAndReplaceDialog = new FindAndReplaceDialogView("Find / Replace");

        if (!readOnly) {
            loadXmlTextAreaAction = new LoadXmlTextAreaAction(editArea, "Load");
            insertBase64FileTextAreaAction = new InsertBase64FileTextAreaAction(editArea, "Insert File as Base64");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.