Uses of Class
net.sourceforge.pmd.RuleContext
-
Packages that use RuleContext Package Description net.sourceforge.pmd This is the PMD programming mistake detector.net.sourceforge.pmd.lang.rule -
-
Uses of RuleContext in net.sourceforge.pmd
Methods in net.sourceforge.pmd that return RuleContext Modifier and Type Method Description static RuleContext
RuleContext. create(FileAnalysisListener listener, Rule rule)
Create a new RuleContext.Methods in net.sourceforge.pmd with parameters of type RuleContext Modifier and Type Method Description void
Rule. apply(Node target, RuleContext ctx)
Process the given node.void
Rule. end(RuleContext ctx)
End processing.void
Rule. start(RuleContext ctx)
Start processing. -
Uses of RuleContext in net.sourceforge.pmd.lang.rule
Methods in net.sourceforge.pmd.lang.rule that return RuleContext Modifier and Type Method Description protected RuleContext
AbstractRule. asCtx(Object ctx)
Cast the argument to aRuleContext
.Methods in net.sourceforge.pmd.lang.rule that return types with arguments of type RuleContext Modifier and Type Method Description abstract AstVisitor<RuleContext,?>
AbstractVisitorRule. buildVisitor()
Returns a rule visitor that can visit nodes for the given rule context.Methods in net.sourceforge.pmd.lang.rule with parameters of type RuleContext Modifier and Type Method Description void
AbstractDelegateRule. apply(Node target, RuleContext ctx)
Deprecated.void
AbstractVisitorRule. apply(Node target, RuleContext ctx)
void
XPathRule. apply(Node target, RuleContext ctx)
void
AbstractDelegateRule. end(RuleContext ctx)
Deprecated.void
AbstractRule. end(RuleContext ctx)
void
AbstractDelegateRule. start(RuleContext ctx)
Deprecated.void
AbstractRule. start(RuleContext ctx)
-