com.intellij.find
Class FindResult

java.lang.Object
  extended by com.intellij.openapi.util.TextRange
      extended by com.intellij.find.FindResult

public abstract class FindResult
extends TextRange

Represents the result of a Find operation.

See Also:
FindManager.findString(CharSequence, int, FindModel)

Constructor Summary
FindResult(int startOffset, int endOffset)
           
 
Method Summary
abstract  boolean isStringFound()
          Checks if the find operation was successful.
 
Methods inherited from class com.intellij.openapi.util.TextRange
contains, contains, cutOut, equals, from, getEndOffset, getLength, getStartOffset, grown, hashCode, intersects, replace, shiftRight, substring, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FindResult

public FindResult(int startOffset,
                  int endOffset)
Method Detail

isStringFound

public abstract boolean isStringFound()
Checks if the find operation was successful.

Returns:
true if a string was found by the operation, false otherwise.