Package org.apache.ivyde.eclipse.ui

Examples of org.apache.ivyde.eclipse.ui.SettingsPathText


        configComposite.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, true));

        Label label = new Label(configComposite, SWT.NONE);
        label.setText("Ivy settings path:");

        settingsText = new SettingsPathText(configComposite, SWT.NONE);
        settingsText.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false, 2, 1));
        settingsText.addListener(new SettingsPathListener() {
            public void settingsPathUpdated(String path) {
                conf.ivySettingsPath = path;
                settingsUpdated();
View Full Code Here


        Group settingsGroup = new Group(composite, SWT.NONE);
        settingsGroup.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
        settingsGroup.setLayout(new GridLayout());
        settingsGroup.setText("Global settings");

        settingsPathText = new SettingsPathText(settingsGroup, SWT.NONE);
        settingsPathText.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));

        Group retrieveGroup = new Group(composite, SWT.NONE);
        retrieveGroup.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
        retrieveGroup.setLayout(new GridLayout());
View Full Code Here

TOP

Related Classes of org.apache.ivyde.eclipse.ui.SettingsPathText

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.