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

Examples of org.eclipse.egit.ui.internal.dialogs.CompareTargetSelectionDialog


    // assert all resources map to the same repository
    if (repo == null)
      return null;
    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()
        .getActiveWorkbenchWindow().getActivePage();
    try {
      CompareUtils
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.dialogs.CompareTargetSelectionDialog

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.