Package com.google.gerrit.server.patch
Class IntraLineDiffKey
- java.lang.Object
-
- com.google.gerrit.server.patch.IntraLineDiffKey
-
- All Implemented Interfaces:
Serializable
public abstract class IntraLineDiffKey extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description IntraLineDiffKey()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static IntraLineDiffKeycreate(org.eclipse.jgit.lib.ObjectId aId, org.eclipse.jgit.lib.ObjectId bId, DiffPreferencesInfo.Whitespace whitespace)abstract org.eclipse.jgit.lib.ObjectIdgetBlobA()abstract org.eclipse.jgit.lib.ObjectIdgetBlobB()abstract DiffPreferencesInfo.WhitespacegetWhitespace()
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public static IntraLineDiffKey create(org.eclipse.jgit.lib.ObjectId aId, org.eclipse.jgit.lib.ObjectId bId, DiffPreferencesInfo.Whitespace whitespace)
-
getBlobA
public abstract org.eclipse.jgit.lib.ObjectId getBlobA()
-
getBlobB
public abstract org.eclipse.jgit.lib.ObjectId getBlobB()
-
getWhitespace
public abstract DiffPreferencesInfo.Whitespace getWhitespace()
-
-