public class RuleSets
extends java.lang.Object
Constructor and Description |
---|
RuleSets()
Public constructor.
|
RuleSets(RuleSet ruleSet)
Public constructor.
|
RuleSets(RuleSets ruleSets)
Copy constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
addRuleSet(RuleSet ruleSet)
Add a ruleset for a language.
|
boolean |
applies(java.io.File file)
Check if a given source file should be checked by rules in this RuleSets.
|
void |
apply(java.util.List<Node> acuList,
RuleContext ctx,
Language language)
Apply all applicable rules to the compilation units.
|
void |
end(RuleContext ctx)
Notify all rules of the end of processing.
|
java.util.Set<Rule> |
getAllRules()
Return all rules from all rulesets.
|
RuleSet[] |
getAllRuleSets()
Get all the RuleSets.
|
long |
getChecksum()
Retrieves a checksum of the rulesets being used.
|
Rule |
getRuleByName(java.lang.String ruleName)
Returns the first Rule found with the given name.
|
java.util.Iterator<RuleSet> |
getRuleSetsIterator() |
void |
removeDysfunctionalRules(java.util.Collection<Rule> collector)
Remove and collect any rules that report problems.
|
int |
ruleCount()
Determines the total count of rules that are used in all rule sets.
|
void |
start(RuleContext ctx)
Notify all rules of the start of processing.
|
boolean |
usesDFA(Language language)
Check if the rules that apply to a source of the given language use DFA.
|
boolean |
usesMultifile(Language language)
Does any Rule for the given Language use multi-file analysis?
|
boolean |
usesTypeResolution(Language language)
Does any Rule for the given Language use Type Resolution?
|
public RuleSets()
public RuleSets(RuleSets ruleSets)
ruleSets
- The RuleSets to copy.public RuleSets(RuleSet ruleSet)
ruleSet
- the RuleSetpublic void addRuleSet(RuleSet ruleSet)
ruleSet
- the RuleSetpublic RuleSet[] getAllRuleSets()
public java.util.Iterator<RuleSet> getRuleSetsIterator()
public java.util.Set<Rule> getAllRules()
public boolean applies(java.io.File file)
file
- the source file to checktrue
if the file should be checked,
false
otherwisepublic void start(RuleContext ctx)
public void apply(java.util.List<Node> acuList, RuleContext ctx, Language language)
acuList
- the List of compilation units; the type these must have,
depends on the source languagectx
- the RuleContextlanguage
- the Language of the sourcepublic void end(RuleContext ctx)
public boolean usesDFA(Language language)
language
- the language of a sourcepublic Rule getRuleByName(java.lang.String ruleName)
ruleName
- the exact name of the rule to findpublic int ruleCount()
public boolean usesTypeResolution(Language language)
language
- The Language.true
if a Rule for the Language uses Type
Resolution, false
otherwise.public boolean usesMultifile(Language language)
language
- The Language.true
if a Rule for the Language uses multi file analysis,
false
otherwise.public void removeDysfunctionalRules(java.util.Collection<Rule> collector)
collector
- public long getChecksum()
Copyright © 2002–2018 PMD. All rights reserved.