Package editor.search
Class SearchLocation
- java.lang.Object
-
- editor.search.SearchLocation
-
public final class SearchLocation extends Object
Location of a substring used for search results.
-
-
Field Summary
Fields Modifier and Type Field Description int
_iColumn
The one-based column numberint
_iLength
The length of the matching string.int
_iLine
The one-based line numberint
_iLineOffset
The offset of the lineint
_iOffset
The zero-based Offset from the beginning of the string.Matcher
_matcher
The regexp pattern matcher if applicable.
-
Constructor Summary
Constructors Constructor Description SearchLocation()
-
-
-
Field Detail
-
_iOffset
public int _iOffset
The zero-based Offset from the beginning of the string.
-
_iLength
public int _iLength
The length of the matching string.
-
_iLine
public int _iLine
The one-based line number
-
_iColumn
public int _iColumn
The one-based column number
-
_iLineOffset
public int _iLineOffset
The offset of the line
-
_matcher
public Matcher _matcher
The regexp pattern matcher if applicable.
-
-