Class NoProblemsValidator
- java.lang.Object
-
- com.github.javaparser.ast.validator.NoProblemsValidator
-
- All Implemented Interfaces:
TypedValidator<Node>,Validator,BiConsumer<Node,ProblemReporter>
public final class NoProblemsValidator extends Object implements Validator
Stub validator for when no validation is wanted.
-
-
Constructor Summary
Constructors Constructor Description NoProblemsValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Node node, ProblemReporter problemReporter)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiConsumer
andThen
-
-
-
-
Method Detail
-
accept
public void accept(Node node, ProblemReporter problemReporter)
- Specified by:
acceptin interfaceBiConsumer<Node,ProblemReporter>- Specified by:
acceptin interfaceTypedValidator<Node>- Specified by:
acceptin interfaceValidator- Parameters:
node- the node that wants to be validatedproblemReporter- when found, validation errors can be reported here
-
-