Package com.inet.problemfinder.rules
Class AbstractRuleSection
java.lang.Object
com.inet.problemfinder.rules.AbstractRuleSection
- All Implemented Interfaces:
ProblemFinderRule
Base class for rules checking looking for errors in
Sections.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract ProblemFinderWarningThis is called for each section of the report.
This method does the concrete check.findErrors(Engine engine) Runs this rule and checks the given Engine for ProblemsMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.inet.problemfinder.rules.ProblemFinderRule
findErrors, getRuleLabel
-
Constructor Details
-
AbstractRuleSection
public AbstractRuleSection()
-
-
Method Details
-
findErrors
Runs this rule and checks the given Engine for Problems- Specified by:
findErrorsin interfaceProblemFinderRule- Parameters:
engine- TheEngineto check.- Returns:
- A list of found problems, can be empty or
nullif the Check is Canceled.
-
check
This is called for each section of the report.
This method does the concrete check.- Parameters:
engine- is the Engine to checksection- the section to check- Returns:
- a found
ProblemFinderWarning, ornullif no error is there - Since:
- i-net Clear Reports 12.0
-