jsystem.extensions.analyzers.text
Class TextNotFound

java.lang.Object
  extended byjsystem.framework.analyzer.AnalyzerParameterImpl
      extended byjsystem.extensions.analyzers.text.AnalyzeTextParameter
          extended byjsystem.extensions.analyzers.text.FindText
              extended byjsystem.extensions.analyzers.text.TextNotFound
All Implemented Interfaces:
AnalyzerParameter

public class TextNotFound
extends FindText

Verify that a text is not found. Support regular expression.


Field Summary
 
Fields inherited from class jsystem.extensions.analyzers.text.FindText
isRegExp
 
Fields inherited from class jsystem.extensions.analyzers.text.AnalyzeTextParameter
testText, toFind
 
Fields inherited from class jsystem.framework.analyzer.AnalyzerParameterImpl
analyzer, message, status, testAgainst, throwable, title
 
Constructor Summary
TextNotFound(String notFound)
           
TextNotFound(String notFound, boolean isRegExp)
           
 
Method Summary
 void analyze()
          The analyze process.
 
Methods inherited from class jsystem.extensions.analyzers.text.AnalyzeTextParameter
setTestAgainst
 
Methods inherited from class jsystem.framework.analyzer.AnalyzerParameterImpl
getMessage, getStatus, getThrowable, getTitle, setAnalyzer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TextNotFound

public TextNotFound(String notFound)
Parameters:
notFound - The String that should not be found

TextNotFound

public TextNotFound(String notFound,
                    boolean isRegExp)
Parameters:
notFound - The string that should not be found.
isRegExp - is regular expression.
Method Detail

analyze

public void analyze()
Description copied from interface: AnalyzerParameter
The analyze process.

Specified by:
analyze in interface AnalyzerParameter
Overrides:
analyze in class FindText