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_iColumnThe one-based column numberint_iLengthThe length of the matching string.int_iLineThe one-based line numberint_iLineOffsetThe offset of the lineint_iOffsetThe zero-based Offset from the beginning of the string.Matcher_matcherThe 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.
-
-