Class Diff
- java.lang.Object
-
- org.eclipse.team.core.diff.provider.Diff
-
- All Implemented Interfaces:
IDiff
- Direct Known Subclasses:
ThreeWayDiff,TwoWayDiff
public abstract class Diff extends Object implements IDiff
Abstract implementation ofIDiffthat can be subclassed by clients.- Since:
- 3.2
- See Also:
ITwoWayDiff,IThreeWayDiff
-
-
Field Summary
Fields Modifier and Type Field Description static intKIND_MASKConstant (bit mask) that defines the area of the status that is reserved for use by this abstract class for encoding the kind of the diff.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)intgetKind()Returns the kind of this diff.IPathgetPath()Returns the full, absolute path of the object to which the diff applies with respect to the model root.intgetStatus()Return the status of the diff node.inthashCode()StringtoDiffString()Return a string that describes the difference represented by this node.
-
-
-
Field Detail
-
KIND_MASK
public static final int KIND_MASK
Constant (bit mask) that defines the area of the status that is reserved for use by this abstract class for encoding the kind of the diff.- See Also:
getStatus(), Constant Field Values
-
-
Constructor Detail
-
Diff
protected Diff(IPath path, int status)
Create a diff node.- Parameters:
path- the path of the diffstatus- the status of the diff. The kind should be encoded in the status along with any additional flags required by a subclass.
-
-
Method Detail
-
getPath
public IPath getPath()
Description copied from interface:IDiffReturns the full, absolute path of the object to which the diff applies with respect to the model root.Note: the returned path never has a trailing separator.
-
getKind
public int getKind()
Description copied from interface:IDiffReturns the kind of this diff. Normally, one ofADDED,REMOVED,CHANGED.- Specified by:
getKindin interfaceIDiff- Returns:
- the kind of this diff
- See Also:
IDiff.ADD,IDiff.REMOVE,IDiff.CHANGE
-
getStatus
public final int getStatus()
Return the status of the diff node. The status is a bit field that contains the kind and any additional status information that subclasses need to encode. The first byte of the status is reserved for use by this abstract class as indicated by theKIND_MASK.- Returns:
- the status of the diff node
-
toDiffString
public String toDiffString()
Description copied from interface:IDiffReturn a string that describes the difference represented by this node.- Specified by:
toDiffStringin interfaceIDiff- Returns:
- a string that describes the difference represented by this node
-
-