Package org.apache.ivyde.internal.eclipse.ui

Examples of org.apache.ivyde.internal.eclipse.ui.SettingsSetupTab


        TabItem mainTab = new TabItem(tabs, SWT.NONE);
        mainTab.setText("Main");
        mainTab.setControl(createMainTab(tabs));

        settingsTab = new SettingsSetupTab(tabs, project) {
            protected void settingsUpdated() {
                super.settingsUpdated();
            }
        };
View Full Code Here


        TabItem mainTab = new TabItem(tabs, SWT.NONE);
        mainTab.setText("Main");
        mainTab.setControl(createMainTab(tabs));

        IProject p = project == null ? null : project.getProject();
        settingsSetupTab = new SettingsSetupTab(tabs, p) {
            protected void settingsUpdated() {
                try {
                    conf.setSettingsProjectSpecific(isProjectSpecific());
                    conf.setIvySettingsSetup(getSettingsEditor().getIvySettingsSetup());
                    state.setIvySettingsLastModified(-1);
View Full Code Here

TOP

Related Classes of org.apache.ivyde.internal.eclipse.ui.SettingsSetupTab

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.