Package com.dci.intellij.dbn.connection

Examples of com.dci.intellij.dbn.connection.GlobalConnectionSettings


        configurationTabs = new TabbedPane(globalSettings.getProject());
        //configurationTabs.setAdjustBorders(false);

        mainPanel.add(configurationTabs, BorderLayout.CENTER);

        GlobalConnectionSettings connectionSettings = globalSettings.getConnectionSettings();
        DatabaseBrowserSettings browserSettings = globalSettings.getBrowserSettings();
        NavigationSettings navigationSettings = globalSettings.getNavigationSettings();
        CodeCompletionSettings codeCompletionSettings = globalSettings.getCodeCompletionSettings();
        //ProjectCodeStyleSettings codeStyleSettings = globalSettings.getCodeStyleSettings();
        DataEditorSettings dataEditorSettings = globalSettings.getDataEditorSettings();
View Full Code Here


    public JComponent getComponent() {
        return mainPanel;
    }

    public void focusConnectionSettings(ConnectionHandler connectionHandler) {
        GlobalConnectionSettings connectionSettings = getConfiguration().getConnectionSettings();
        GlobalConnectionSettingsForm settingsEditor = connectionSettings.getSettingsEditor();
        if (settingsEditor != null) {
            settingsEditor.focusConnectionSettings(connectionHandler);
            focusSettingsEditor(connectionSettings);
        }
    }
View Full Code Here

        codeStyleSettings = new ProjectCodeStyleSettings(project);
        dataEditorSettings = new DataEditorSettings(project);
        codeCompletionSettings = new CodeCompletionSettings(project);
        executionEngineSettings = new ExecutionEngineSettings(project);
        ddlFileSettings = new DDLFileSettings(project);
        connectionSettings = new GlobalConnectionSettings(project);
    }
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.connection.GlobalConnectionSettings

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.