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

Examples of org.cloudfoundry.ide.eclipse.server.rse.internal.ConfigureRemoteCloudFoundryAction


    Menu menu = menuManager.createContextMenu(instancesViewer.getControl());
    instancesViewer.getControl().setMenu(menu);

    if (Platform.getBundle("org.eclipse.rse.ui") != null) { //$NON-NLS-1$
      final ConfigureRemoteCloudFoundryAction configAction = new ConfigureRemoteCloudFoundryAction(cloudServer);
      Link configLink = new Link(client, SWT.NONE);
      configLink.setText(Messages.ApplicationDetailsPart_TEXT_SHOW_IN_REMOTE_VIEW);
      configLink.addSelectionListener(new SelectionAdapter() {
        @Override
        public void widgetSelected(SelectionEvent e) {
          configAction.run();
        }
      });
    }
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.rse.internal.ConfigureRemoteCloudFoundryAction

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.