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

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


        Composite ivyFileComposite = new Composite(body, SWT.NONE);
        ivyFileComposite.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
        ivyFileComposite.setLayout(new GridLayout(2, false));

        ivyFilePathText = new IvyFilePathText(ivyFileComposite, SWT.NONE, project);
        ivyFilePathText.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false, 2, 1));

        resolveInWorkspaceCheck = new Button(body, SWT.CHECK);
        resolveInWorkspaceCheck.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true,
                false, 2, 1));
View Full Code Here


        // CheckStyle:MagicNumber| OFF
        Composite configComposite = new Composite(composite, SWT.NONE);
        configComposite.setLayout(new GridLayout(2, false));
        configComposite.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, true));

        ivyFilePathText = new IvyFilePathText(configComposite, SWT.NONE, project == null ? null
                : project.getProject());
        ivyFilePathText.addListener(new IvyXmlPathListener() {
            public void ivyXmlPathUpdated(String path) {
                conf.setIvyXmlPath(path);
                checkIvyXmlPath();
View Full Code Here

TOP

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

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.