Uses of Interface
net.sourceforge.pmd.lang.ast.RootNode
-
Packages that use RootNode Package Description net.sourceforge.pmd.lang net.sourceforge.pmd.lang.ast net.sourceforge.pmd.lang.ast.impl.antlr4 net.sourceforge.pmd.lang.ast.impl.javacc Support classes for language implementations based on JavaCC. -
-
Uses of RootNode in net.sourceforge.pmd.lang
Classes in net.sourceforge.pmd.lang that implement RootNode Modifier and Type Class Description static class
PlainTextLanguage.PlainTextFile
The only node produced by the parser ofPlainTextLanguage
.Methods in net.sourceforge.pmd.lang that return types with arguments of type RootNode Modifier and Type Method Description AstInfo<? extends RootNode>
PlainTextLanguage.PlainTextFile. getAstInfo()
-
Uses of RootNode in net.sourceforge.pmd.lang.ast
Classes in net.sourceforge.pmd.lang.ast with type parameters of type RootNode Modifier and Type Class Description class
AstInfo<T extends RootNode>
The output ofParser.parse(ParserTask)
.Methods in net.sourceforge.pmd.lang.ast that return RootNode Modifier and Type Method Description default @NonNull RootNode
Node. getRoot()
Returns the root of the tree this node is declared in.RootNode
Parser. parse(Parser.ParserTask task)
Parses an entire tree for this language.Methods in net.sourceforge.pmd.lang.ast that return types with arguments of type RootNode Modifier and Type Method Description default AstInfo<? extends RootNode>
Node. getAstInfo()
Returns theAstInfo
for this root node.AstInfo<? extends RootNode>
RootNode. getAstInfo()
-
Uses of RootNode in net.sourceforge.pmd.lang.ast.impl.antlr4
Classes in net.sourceforge.pmd.lang.ast.impl.antlr4 with type parameters of type RootNode Modifier and Type Class Description class
AntlrBaseParser<N extends AntlrNode<N>,R extends BaseAntlrInnerNode<N> & RootNode>
Generic Antlr parser adapter for all Antlr parsers. -
Uses of RootNode in net.sourceforge.pmd.lang.ast.impl.javacc
Classes in net.sourceforge.pmd.lang.ast.impl.javacc with type parameters of type RootNode Modifier and Type Class Description class
JjtreeParserAdapter<R extends RootNode>
Base implementation of theParser
interface for JavaCC language implementations.
-