Package org.eclipse.team.ui.synchronize

Examples of org.eclipse.team.ui.synchronize.SyncInfoCompareInput


    job.schedule();
    return null;
  }

  void openCompareEditor(SyncInfo syncInfo, IUser user) {
    final SyncInfoCompareInput input = new SyncInfoCompareInput(NLS.bind(Messages.CompareWithHandler_CompareInputDescription, user.getNickname()), syncInfo);
    WorkbenchJob job = new WorkbenchJob(Messages.CompareWithHandler_CompareEditorWorkbenchJobTitle) {
      public IStatus runInUIThread(IProgressMonitor monitor) {
        CompareUI.openCompareEditor(input, true);
        return Status.OK_STATUS;
      }
View Full Code Here

TOP

Related Classes of org.eclipse.team.ui.synchronize.SyncInfoCompareInput

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.