Schnittstelle ProblemFinderRule
- Alle bekannten Implementierungsklassen:
AbstractRuleElement, AbstractRuleField, AbstractRulePropertyFormula, AbstractRuleReport, AbstractRuleSection
public interface ProblemFinderRule
This Interface defines a
A rule checks the report for a certain problem.
ProblemFinderRule that can be called via the ProblemFinder.A rule checks the report for a certain problem.
- Siehe auch:
-
Methodenübersicht
Modifikator und TypMethodeBeschreibungdefault List<ProblemFinderWarning> findErrors(Engine engine) Veraltet.default List<ProblemFinderWarning> findErrors(Engine engine, Properties userProperties) Runs this rule and checks the given Engine for ProblemsGet the localized label for this rule.
-
Methodendetails
-
findErrors
Runs this rule and checks the given Engine for Problems- Parameter:
engine- TheEngineto check.userProperties- possible prompt values, can be empty if the user has never run the report- Gibt zurück:
- A list of found problems, can be empty or
nullif the Check is Canceled. - Seit:
- i-net Clear Reports 20.10
-
findErrors
Veraltet.As of i-net Clear Reports 20.10, usefindErrors(Engine, Properties)insteadRuns this rule and checks the given Engine for Problems- Parameter:
engine- TheEngineto check.- Gibt zurück:
- A list of found problems, can be empty or
nullif the Check is Canceled. - Löst aus:
RuntimeException- if you not override one of the methods- Seit:
- i-net Clear Reports 12.0
-
getRuleLabel
String getRuleLabel()Get the localized label for this rule. This gives a general description.- Gibt zurück:
- the localized label.
- Seit:
- i-net Clear Reports 12.0
-
findErrors(Engine, Properties)instead