1 11 package org.eclipse.team.core.diff; 12 13 import org.eclipse.team.core.diff.provider.ThreeWayDiff; 14 15 30 public interface IThreeWayDiff extends IDiff { 31 32 35 36 41 public static final int OUTGOING = 0x100; 42 43 48 public static final int INCOMING = 0x200; 49 50 58 public static final int CONFLICTING = OUTGOING | INCOMING; 59 60 63 public static final int DIRECTION_MASK = CONFLICTING; 64 65 72 public ITwoWayDiff getLocalChange(); 73 74 81 public ITwoWayDiff getRemoteChange(); 82 83 90 public int getDirection(); 91 92 } 93 | Popular Tags |