Package org.eclipse.egit.ui.internal.components.RemoteSelectionCombo

Examples of org.eclipse.egit.ui.internal.components.RemoteSelectionCombo.SelectionType


    final GridData gd = new GridData();
    gd.grabExcessHorizontalSpace = true;
    gd.horizontalAlignment = SWT.FILL;
    remotePanel.setLayoutData(gd);

    SelectionType selectionType = sourceSelection ? SelectionType.FETCH : SelectionType.PUSH;
    remoteCombo = new RemoteSelectionCombo(remotePanel, SWT.NULL, selectionType);
    remoteConfig = remoteCombo.setItems(configuredRemotes);
    remoteCombo.addRemoteSelectionListener(new IRemoteSelectionListener() {
      public void remoteSelected(RemoteConfig rc) {
        remoteConfig = rc;
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.components.RemoteSelectionCombo.SelectionType

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.