| Interface | Description |
|---|---|
| TypedValidator<N extends Node> |
A validator that validates a known node type.
|
| Validator |
A validator that can be run on a node to check for semantic errors.
|
| Class | Description |
|---|---|
| ProblemReporter |
A simple interface where validators can report found problems.
|
| ReservedKeywordValidator |
Validates that identifiers are not keywords - this for the few keywords that the parser
accepts because they were added after Java 1.0.
|
| SimpleValidator<N extends Node> |
Runs a validator on all nodes of a certain type,
and adds a problem for all nodes that pass a condition.
|
| SingleNodeTypeValidator<N extends Node> |
Runs a validator on all nodes of a certain type.
|
| TreeVisitorValidator |
A validator that walks the whole tree, visiting every node.
|
| Validators |
A validator that will call a collection of validators.
|
| VisitorValidator |
A validator that uses a visitor for validation.
|
Copyright © 2007–2021. All rights reserved.