Package org.eclipse.egit.core.synchronize.ThreeWayDiffEntry

Examples of org.eclipse.egit.core.synchronize.ThreeWayDiffEntry.ChangeType


    else if (gitDirection == Direction.OUTGOING)
      direction = OUTGOING;
    else
      direction = CONFLICTING;

    ChangeType changeType = obj.getDiffEntry().getChangeType();

    if (changeType == ChangeType.MODIFY)
      return direction | CHANGE;
    if (changeType == ChangeType.ADD)
      return direction | ADDITION;
View Full Code Here

TOP

Related Classes of org.eclipse.egit.core.synchronize.ThreeWayDiffEntry.ChangeType

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.