Class Range
- java.lang.Object
-
- edu.hm.hafner.analysis.parser.dry.dupfinder.Range
-
public class Range extends Object
Java Bean class for a Reshaper DupFinder range.- Author:
- Rafal Jasica
-
-
Constructor Summary
Constructors Constructor Description Range()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetEnd()Returns the line range start.intgetStart()Returns the start.voidsetEnd(int end)Sets the end to the specified value.voidsetStart(int start)Sets the start to the specified value.
-
-
-
Method Detail
-
getStart
public int getStart()
Returns the start.- Returns:
- the start
-
setStart
public void setStart(int start)
Sets the start to the specified value.- Parameters:
start- the value to set
-
getEnd
public int getEnd()
Returns the line range start.- Returns:
- the line range start
-
setEnd
public void setEnd(int end)
Sets the end to the specified value.- Parameters:
end- the value to set
-
-