Uses of Interface
net.sourceforge.pmd.lang.ast.GenericToken
-
Packages that use GenericToken Package Description net.sourceforge.pmd.cpd.impl Utilities to implement a CPDCpdLexer
.net.sourceforge.pmd.lang net.sourceforge.pmd.lang.ast net.sourceforge.pmd.lang.ast.impl net.sourceforge.pmd.lang.ast.impl.antlr4 net.sourceforge.pmd.lang.ast.impl.javacc Support classes for language implementations based on JavaCC. -
-
Uses of GenericToken in net.sourceforge.pmd.cpd.impl
Classes in net.sourceforge.pmd.cpd.impl with type parameters of type GenericToken Modifier and Type Class Description class
BaseTokenFilter<T extends GenericToken<T>>
A generic filter for PMD token managers that allows to use comments to enable / disable analysis of parts of the streamclass
CpdLexerBase<T extends GenericToken<T>>
Generic base class for aCpdLexer
. -
Uses of GenericToken in net.sourceforge.pmd.lang
Classes in net.sourceforge.pmd.lang with type parameters of type GenericToken Modifier and Type Interface Description interface
TokenManager<T extends GenericToken<T>>
Common interface for interacting with parser Token Managers. -
Uses of GenericToken in net.sourceforge.pmd.lang.ast
Classes in net.sourceforge.pmd.lang.ast with type parameters of type GenericToken Modifier and Type Interface Description interface
GenericToken<T extends GenericToken<T>>
Represents a token, part of a token chain in a source file.Methods in net.sourceforge.pmd.lang.ast with type parameters of type GenericToken Modifier and Type Method Description static <T extends GenericToken<T>>
Iterable<T>GenericToken. previousSpecials(T from)
Returns an iterable that enumerates all special tokens belonging to the given token.static <T extends GenericToken<T>>
Iterable<T>GenericToken. range(T from, T to)
Returns an iterator that enumerates all (non-special) tokens between the two tokens (bounds included).static <T extends GenericToken<T>>
Stream<T>GenericToken. streamRange(T from, T to)
Returns a stream corresponding torange(GenericToken, GenericToken)
. -
Uses of GenericToken in net.sourceforge.pmd.lang.ast.impl
Classes in net.sourceforge.pmd.lang.ast.impl with type parameters of type GenericToken Modifier and Type Class Description class
TokenDocument<T extends GenericToken>
Token layer of a parsed file. -
Uses of GenericToken in net.sourceforge.pmd.lang.ast.impl.antlr4
Classes in net.sourceforge.pmd.lang.ast.impl.antlr4 that implement GenericToken Modifier and Type Class Description class
AntlrToken
Generic Antlr representation of a token. -
Uses of GenericToken in net.sourceforge.pmd.lang.ast.impl.javacc
Classes in net.sourceforge.pmd.lang.ast.impl.javacc that implement GenericToken Modifier and Type Class Description class
JavaccToken
A generic token implementation for JavaCC parsers.
-