Package com.dci.intellij.dbn.execution.statement.processor

Examples of com.dci.intellij.dbn.execution.statement.processor.StatementExecutionBasicProcessor


        }
    }

    public StatementExecutionBasicProcessor createExecutionProcessor(ExecutablePsiElement executablePsiElement) {
        synchronized(executionProcessors) {
            StatementExecutionBasicProcessor executionProcessor =
                    executablePsiElement.isQuery() ?
                            new StatementExecutionCursorProcessor(executablePsiElement, getNextSequence()) :
                            new StatementExecutionBasicProcessor(executablePsiElement, getNextSequence());
            executionProcessors.add(executionProcessor);
            cleanup();
            return executionProcessor;
        }
    }
View Full Code Here


    public void clearExecutionMessage() {
        executionMessage = null;
    }

    public Project getProject() {
        StatementExecutionBasicProcessor executionProcessor = getExecutionProcessor();
        return executionProcessor == null ? null : executionProcessor.getProject();
    }
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.execution.statement.processor.StatementExecutionBasicProcessor

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.