Package com.google.gerrit.entities
Class CommentRange
- java.lang.Object
-
- com.google.gerrit.entities.CommentRange
-
public class CommentRange extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected int
endCharacter
protected int
endLine
protected int
startCharacter
protected int
startLine
-
Constructor Summary
Constructors Modifier Constructor Description protected
CommentRange()
CommentRange(int sl, int sc, int el, int ec)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Comment.Range
asCommentRange()
boolean
equals(Object obj)
int
getEndCharacter()
int
getEndLine()
int
getStartCharacter()
int
getStartLine()
int
hashCode()
void
setEndCharacter(int ec)
void
setEndLine(int el)
void
setStartCharacter(int sc)
void
setStartLine(int sl)
String
toString()
-
-
-
Method Detail
-
getStartLine
public int getStartLine()
-
getStartCharacter
public int getStartCharacter()
-
getEndLine
public int getEndLine()
-
getEndCharacter
public int getEndCharacter()
-
setStartLine
public void setStartLine(int sl)
-
setStartCharacter
public void setStartCharacter(int sc)
-
setEndLine
public void setEndLine(int el)
-
setEndCharacter
public void setEndCharacter(int ec)
-
asCommentRange
public Comment.Range asCommentRange()
-
-