Package org.eclipse.jdt.core.dom.rewrite
Class TargetSourceRangeComputer.SourceRange
- java.lang.Object
-
- org.eclipse.jdt.core.dom.rewrite.TargetSourceRangeComputer.SourceRange
-
- Enclosing class:
- TargetSourceRangeComputer
public static final class TargetSourceRangeComputer.SourceRange extends Object
Reified source range. Instances are "value" object (cannot be modified).- Since:
- 3.1
-
-
Constructor Summary
Constructors Constructor Description SourceRange(int startPosition, int length)Creates a new source range.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLength()Returns the source length.intgetStartPosition()Returns the start position.
-
-
-
Method Detail
-
getStartPosition
public int getStartPosition()
Returns the start position.- Returns:
- the 0-based character index, or
-1if no source position information is known
-
getLength
public int getLength()
Returns the source length.- Returns:
- a (possibly 0) length, or
0if no source position information is known
-
-