Package org.cloudfoundry.ide.eclipse.server.ui.internal

Examples of org.cloudfoundry.ide.eclipse.server.ui.internal.UIPart


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

    final UIPart appPart = new AppNamePart();
    // Add the listener first so that it can be notified of changes during
    // the part creation.
    appPart.addPartChangeListener(deploymentPage);
    appPart.addPartChangeListener(this);

    appPart.createPart(composite);

    Label nameLabel = new Label(composite, SWT.NONE);
    nameLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false));
    nameLabel.setText(Messages.CloudFoundryApplicationWizardPage_LABEL_BUILDPACK);
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.ui.internal.UIPart

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.