Examples of compileObject()


Examples of com.dci.intellij.dbn.database.DatabaseMetadataInterface.compileObject()

            if (compileType == CompileType.KEEP) {
                isDebug = object.getStatus().is(DBObjectStatus.DEBUG);
            }

            if (contentType == DBContentType.CODE_SPEC || contentType == DBContentType.CODE) {
                metadataInterface.compileObject(
                            object.getSchema().getName(),
                            object.getName(),
                            object.getTypeName().toUpperCase(),
                            isDebug,
                            connection);
View Full Code Here

Examples of com.dci.intellij.dbn.database.DatabaseMetadataInterface.compileObject()

                            object.getTypeName().toUpperCase(),
                            isDebug,
                            connection);

            } else if (contentType == DBContentType.CODE_SPEC_AND_BODY) {
                metadataInterface.compileObject(
                            object.getSchema().getName(),
                            object.getName(),
                            object.getTypeName().toUpperCase(),
                            isDebug,
                            connection);
View Full Code Here

Examples of com.dci.intellij.dbn.execution.compiler.DatabaseCompilerManager.compileObject()

    }

    public void actionPerformed(AnActionEvent e) {
        DatabaseCompilerManager compilerManager = DatabaseCompilerManager.getInstance(object.getProject());
        CompileType compileType = getCompilerSettings(object.getProject()).getCompileType();
        compilerManager.compileObject(object, contentType, compileType, false);
    }

    public void update(AnActionEvent e) {
        Presentation presentation = e.getPresentation();
View Full Code Here

Examples of com.dci.intellij.dbn.execution.compiler.DatabaseCompilerManager.compileObject()

                                initProgressIndicator(progressIndicator, true);
                                DatabaseCompilerManager compilerManager = DatabaseCompilerManager.getInstance(project);
                                for (DBSchemaObject schemaObject : selectedDependencies) {
                                    if (!progressIndicator.isCanceled()) {
                                        progressIndicator.setText("Compiling " + schemaObject.getQualifiedNameWithType());
                                        compilerManager.compileObject(schemaObject, CompileType.DEBUG, true);
                                    }
                                }
                                executionInput.getConnectionHandler().getObjectBundle().refreshObjectsStatus();
                                if (!progressIndicator.isCanceled()) {
                                    performExecution(
View Full Code Here

Examples of com.dci.intellij.dbn.execution.compiler.DatabaseCompilerManager.compileObject()

        SourceCodeFile virtualFile = getSourcecodeFile(e);
        if (virtualFile!= null) {
            Project project = virtualFile.getProject();
            DatabaseCompilerManager compilerManager = DatabaseCompilerManager.getInstance(project);
            CompilerSettings compilerSettings = getCompilerSettings(project);
            compilerManager.compileObject(
                    virtualFile.getObject(),
                    virtualFile.getContentType(),
                    compilerSettings.getCompileType(), false);
        }
    }
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.