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

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


    GitSyncObjectCache obj = cache.get(path);
    if (obj == null)
      return IN_SYNC;

    int direction;
    Direction gitDirection = obj.getDiffEntry().getDirection();
    if (gitDirection == Direction.INCOMING)
      direction = INCOMING;
    else if (gitDirection == Direction.OUTGOING)
      direction = OUTGOING;
    else
View Full Code Here

TOP

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

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.