Package org.eclipse.egit.ui.internal.dialogs

Examples of org.eclipse.egit.ui.internal.dialogs.CompareTargetSelectionDialog.open()


    final IResource[] resources = getSelectedResources(event);

    CompareTargetSelectionDialog dlg = new CompareTargetSelectionDialog(
        getShell(event), repo, resources.length == 1 ? resources[0]
            .getFullPath().lastSegment() : null);
    if (dlg.open() != Window.OK)
      return null;

    final String refName = dlg.getRefName();

    IWorkbenchPage workBenchPage = PlatformUI.getWorkbench()
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.