Package com.dci.intellij.dbn.options.general

Examples of com.dci.intellij.dbn.options.general.GeneralProjectSettings


        CodeCompletionSettings codeCompletionSettings = globalSettings.getCodeCompletionSettings();
        //ProjectCodeStyleSettings codeStyleSettings = globalSettings.getCodeStyleSettings();
        DataEditorSettings dataEditorSettings = globalSettings.getDataEditorSettings();
        ExecutionEngineSettings executionEngineSettings = globalSettings.getExecutionEngineSettings();
        DDLFileSettings ddlFileSettings = globalSettings.getDdlFileSettings();
        GeneralProjectSettings generalSettings = globalSettings.getGeneralSettings();

        addSettingsPanel(connectionSettings);
        addSettingsPanel(browserSettings);
        addSettingsPanel(navigationSettings);
        addSettingsPanel(codeCompletionSettings);
View Full Code Here


        return project.getComponent(GlobalProjectSettings.class);
    }

    private GlobalProjectSettings(Project project) {
        super(project);
        generalSettings = new GeneralProjectSettings(project);
        browserSettings = new DatabaseBrowserSettings(project);
        navigationSettings = new NavigationSettings(project);
        codeStyleSettings = new ProjectCodeStyleSettings(project);
        dataEditorSettings = new DataEditorSettings(project);
        codeCompletionSettings = new CodeCompletionSettings(project);
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.options.general.GeneralProjectSettings

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.