Examples of fireExecution()


Examples of com.dci.intellij.dbn.execution.statement.StatementExecutionManager.fireExecution()

    }

    public void invoke(@NotNull Project project, Editor editor, PsiFile psiFile) throws IncorrectOperationException {
        ExecutablePsiElement executable = PsiUtil.lookupExecutableAtCaret(psiFile);
        StatementExecutionManager executionManager = StatementExecutionManager.getInstance(project);
        executionManager.fireExecution(executable.getExecutionProcessor());
        DocumentUtil.refreshEditorAnnotations(executable.getFile());
    }

    public boolean startInWriteAction() {
        return false;
View Full Code Here

Examples of com.dci.intellij.dbn.execution.statement.StatementExecutionManager.fireExecution()

    }

    public void actionPerformed(AnActionEvent e) {
        if (executionProcessor.canExecute()) {
            StatementExecutionManager executionManager = StatementExecutionManager.getInstance(executionProcessor.getProject());
            executionManager.fireExecution(executionProcessor);
        } else {
            executionProcessor.navigateToResult();
        }
    }
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.