Package editor.search

Class SearchLocation


  • public final class SearchLocation
    extends java.lang.Object
    Location of a substring used for search results.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int _iColumn
      The one-based column number
      int _iLength
      The length of the matching string.
      int _iLine
      The one-based line number
      int _iLineOffset
      The offset of the line
      int _iOffset
      The zero-based Offset from the beginning of the string.
      java.util.regex.Matcher _matcher
      The regexp pattern matcher if applicable.
    • Constructor Summary

      Constructors 
      Constructor Description
      SearchLocation()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getReplacementText​(java.lang.String dialogReplaceText)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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 java.util.regex.Matcher _matcher
        The regexp pattern matcher if applicable.
    • Constructor Detail

      • SearchLocation

        public SearchLocation()
    • Method Detail

      • getReplacementText

        public java.lang.String getReplacementText​(java.lang.String dialogReplaceText)