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 long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description IntraLineDiffKey()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static IntraLineDiffKey
create(org.eclipse.jgit.lib.ObjectId aId, org.eclipse.jgit.lib.ObjectId bId, DiffPreferencesInfo.Whitespace whitespace)
abstract org.eclipse.jgit.lib.ObjectId
getBlobA()
abstract org.eclipse.jgit.lib.ObjectId
getBlobB()
abstract DiffPreferencesInfo.Whitespace
getWhitespace()
-
-
-
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()
-
-