Package org.eclipse.team.core.mapping.provider

Examples of org.eclipse.team.core.mapping.provider.MergeStatus


        IProgressMonitor monitor) throws CoreException {
      IDiff[] deltas = getSetToMerge(mergeContext);
      IStatus status = mergeContext.merge(deltas, false /* don't force */,
          monitor);
      if (status.getCode() == IMergeStatus.CONFLICTS) {
        return new MergeStatus(status.getPlugin(), status.getMessage(),
            mergeContext.getScope().getMappings(providerID));
      }
      return status;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.team.core.mapping.provider.MergeStatus

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.