Package com.dci.intellij.dbn.execution.method

Examples of com.dci.intellij.dbn.execution.method.MethodExecutionManager.execute()


    public void actionPerformed(AnActionEvent e) {
        Project project = executionResult.getProject();
        MethodExecutionManager executionManager = MethodExecutionManager.getInstance(project);
        MethodExecutionInput executionInput = executionResult.getExecutionInput();
        if (executionManager.promptExecutionDialog(executionInput, false)) {
            executionManager.execute(executionInput);
        }
    }

    @Override
    public void update(AnActionEvent e) {
View Full Code Here


    }

    public void actionPerformed(AnActionEvent e) {
        MethodExecutionManager executionManager = MethodExecutionManager.getInstance(method.getProject());
        if (executionManager.promptExecutionDialog(method, false)) {
            executionManager.execute(method);
        }
    }
}
View Full Code Here

    }

    @Override
    public void actionPerformed(AnActionEvent e) {
        MethodExecutionManager executionManager = MethodExecutionManager.getInstance(executionResult.getProject());
        executionManager.execute(executionResult.getExecutionInput());
    }

    @Override
    public void update(AnActionEvent e) {
        e.getPresentation().setEnabled(
View Full Code Here

            saveChanges();
            MethodExecutionInput executionInput = mainComponent.getTree().getSelectedExecutionInput();
            if (executionInput != null) {
                MethodExecutionManager executionManager = MethodExecutionManager.getInstance(getProject());
                close(OK_EXIT_CODE);
                executionManager.execute(executionInput);
            }
        }
    }

    private class SaveAction extends AbstractAction {
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.