Package de.isas.mztab2.validation
Interface CvTermValidationHandler
-
- All Known Implementing Classes:
AndValidationHandler
,ExtraParametersValidationHandler
,OrValidationHandler
,SharedParametersValidationHandler
,XorValidationHandler
public interface CvTermValidationHandler
Interface for handling of rule evaluation results.- Author:
- nilshoffmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ValidationMessage>
handleParameters(RuleEvaluationResult result, boolean errorOnTermNotInRule)
Implementations of this method should take care that they always return a list, even if it is empty.
-
-
-
Method Detail
-
handleParameters
List<ValidationMessage> handleParameters(RuleEvaluationResult result, boolean errorOnTermNotInRule)
Implementations of this method should take care that they always return a list, even if it is empty.- Parameters:
result
- the validation messages produced by this handler.errorOnTermNotInRule
- flag to signal, whether unknown terms should yield an error.- Returns:
- a list of validation messages.
-
-