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
Section
s.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract ProblemFinderWarning
This 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, wait
Methods 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:
findErrors
in interfaceProblemFinderRule
- Parameters:
engine
- TheEngine
to check.- Returns:
- A list of found problems, can be empty or
null
if 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
, ornull
if no error is there - Since:
- i-net Clear Reports 12.0
-