Examples of IvySettingsSetup


Examples of org.apache.ivyde.eclipse.cpcontainer.IvySettingsSetup

    public void setIvyOrgUrl(String url) {
        prefStore.setValue(PreferenceConstants.ORGANISATION_URL, url);
    }

    public IvySettingsSetup getIvySettingsSetup() {
        IvySettingsSetup setup = new IvySettingsSetup();
        setup.setIvySettingsPath(prefStore.getString(PreferenceConstants.IVYSETTINGS_PATH));
        setup.setLoadSettingsOnDemand(prefStore
                .getBoolean(PreferenceConstants.LOAD_SETTINGS_ON_DEMAND));
        setup.setPropertyFiles(IvyClasspathUtil.split(prefStore
                .getString(PreferenceConstants.PROPERTY_FILES)));
        return setup;
    }
View Full Code Here

Examples of org.apache.ivyde.eclipse.cpcontainer.IvySettingsSetup

        };
        propFilesEditor.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
    }

    public IvySettingsSetup getIvySettingsSetup() {
        IvySettingsSetup setup = new IvySettingsSetup();
        setup.setIvySettingsPath(settingsEditor.getText().getText());
        setup.setLoadSettingsOnDemand(loadOnDemandButton.getSelection());
        setup.setPropertyFiles(IvyClasspathUtil.split(propFilesEditor.getText().getText()));
        return setup;
    }
View Full Code Here

Examples of org.apache.ivyde.eclipse.cpcontainer.IvySettingsSetup

        }
    }

    void settingsPathUpdated() {
        synchronized (listeners) {
            IvySettingsSetup setup = getIvySettingsSetup();
            Iterator it = listeners.iterator();
            while (it.hasNext()) {
                ((SettingsEditorListener) it.next()).settingsEditorUpdated(setup);
            }
        }
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.