Package net.sourceforge.pmd.lang.rule
Class AbstractRule
- java.lang.Object
-
- net.sourceforge.pmd.properties.AbstractPropertySource
-
- net.sourceforge.pmd.lang.rule.AbstractRule
-
- All Implemented Interfaces:
PropertySource
,Rule
public abstract class AbstractRule extends AbstractPropertySource implements Rule
Basic abstract implementation of all parser-independent methods of the Rule interface.- Author:
- pieter_van_raemdonck - Application Engineers NV/SA - www.ae.be
-
-
Field Summary
-
Fields inherited from class net.sourceforge.pmd.properties.AbstractPropertySource
propertyDescriptors, propertyValuesByDescriptor
-
Fields inherited from interface net.sourceforge.pmd.Rule
VIOLATION_SUPPRESS_REGEX_DESCRIPTOR, VIOLATION_SUPPRESS_XPATH_DESCRIPTOR
-
-
Constructor Summary
Constructors Constructor Description AbstractRule()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addExample(String example)
Add a single example for this Rule.void
addRuleChainVisit(Class<? extends Node> nodeClass)
Adds an AST node by class to be visited by the Rule on the RuleChain.void
addRuleChainVisit(String astNodeName)
Adds an AST node by name to be visited by the Rule on the RuleChain.void
addViolation(Object data, Node node)
void
addViolation(Object data, Node node, Object[] args)
void
addViolation(Object data, Node node, String arg)
void
addViolationWithMessage(Object data, Node node, String message)
void
addViolationWithMessage(Object data, Node node, String message, int beginLine, int endLine)
void
addViolationWithMessage(Object data, Node node, String message, Object[] args)
Rule
deepCopy()
Creates a new copy of this rule.void
deepCopyValuesTo(AbstractRule otherRule)
Deprecated.UsedeepCopy()
to create verbatim copies of rules.void
end(RuleContext ctx)
End processing.boolean
equals(Object o)
Rules are equal if: They have the same implementation class. They have the same name. They have the same priority. They share the same properties.String
getDescription()
Get the description of this Rule.List<String>
getExamples()
Get the list of examples for this Rule.String
getExternalInfoUrl()
Get a URL for external information about this Rule.Language
getLanguage()
Get the Language of this Rule.LanguageVersion
getMaximumLanguageVersion()
Get the maximum LanguageVersion to which this Rule applies.String
getMessage()
Get the message to show when this Rule identifies a violation.LanguageVersion
getMinimumLanguageVersion()
Get the minimum LanguageVersion to which this Rule applies.String
getName()
Get the name of this Rule.ParserOptions
getParserOptions()
This implementation returns a new instance ofParserOptions
using default settings.RulePriority
getPriority()
Get the priority of this Rule.protected String
getPropertySourceType()
List<String>
getRuleChainVisits()
Gets the collection of AST node names visited by the Rule on the RuleChain.String
getRuleClass()
Get the implementation class of this Rule.String
getRuleSetName()
Get the name of the RuleSet containing this Rule.String
getSince()
Get the version of PMD in which this Rule was added.int
hashCode()
boolean
isDeprecated()
Gets whether this Rule is deprecated.boolean
isDfa()
Gets whether this Rule uses Data Flow Analysis.boolean
isMultifile()
Gets whether this Rule uses multi-file analysis.boolean
isRuleChain()
Gets whether this Rule uses the RuleChain.boolean
isTypeResolution()
Gets whether this Rule uses Type Resolution.void
setDeprecated(boolean deprecated)
Sets whether this Rule is deprecated.void
setDescription(String description)
Set the description of this Rule.void
setDfa(boolean isDfa)
Sets whether this Rule uses Data Flow Analysis.void
setExternalInfoUrl(String externalInfoUrl)
Set a URL for external information about this Rule.void
setLanguage(Language language)
Set the Language of this Rule.void
setMaximumLanguageVersion(LanguageVersion maximumLanguageVersion)
Set the maximum LanguageVersion to which this Rule applies.void
setMessage(String message)
Set the message to show when this Rule identifies a violation.void
setMinimumLanguageVersion(LanguageVersion minimumLanguageVersion)
Set the minimum LanguageVersion to which this Rule applies.void
setMultifile(boolean multifile)
Sets whether this Rule uses multi-file analysis.void
setName(String name)
Set the name of this Rule.void
setPriority(RulePriority priority)
Set the priority of this Rule.void
setRuleClass(String ruleClass)
Set the class of this Rule.void
setRuleSetName(String ruleSetName)
Set the name of the RuleSet containing this Rule.void
setSince(String since)
Set the version of PMD in which this Rule was added.void
setTypeResolution(boolean usingTypeResolution)
Sets whether this Rule uses Type Resolution.void
setUsesDFA()
Deprecated.void
setUsesMultifile()
Deprecated.void
setUsesTypeResolution()
Deprecated.void
start(RuleContext ctx)
Start processing.boolean
usesDFA()
Deprecated.boolean
usesMultifile()
Deprecated.boolean
usesRuleChain()
Deprecated.boolean
usesTypeResolution()
Deprecated.-
Methods inherited from class net.sourceforge.pmd.properties.AbstractPropertySource
copyPropertyDescriptors, copyPropertyValues, definePropertyDescriptor, dysfunctionReason, getOverriddenPropertiesByPropertyDescriptor, getOverriddenPropertyDescriptors, getPropertiesByPropertyDescriptor, getProperty, getPropertyDescriptor, getPropertyDescriptors, hasDescriptor, ignoredProperties, isPropertyOverridden, setProperty, setProperty, useDefaultValueFor, usesDefaultValues
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sourceforge.pmd.properties.PropertySource
definePropertyDescriptor, dysfunctionReason, getOverriddenPropertiesByPropertyDescriptor, getOverriddenPropertyDescriptors, getPropertiesByPropertyDescriptor, getProperty, getPropertyDescriptor, getPropertyDescriptors, hasDescriptor, ignoredProperties, isPropertyOverridden, setProperty, setProperty, useDefaultValueFor, usesDefaultValues
-
-
-
-
Method Detail
-
getPropertySourceType
protected String getPropertySourceType()
- Specified by:
getPropertySourceType
in classAbstractPropertySource
-
deepCopyValuesTo
@Deprecated public void deepCopyValuesTo(AbstractRule otherRule)
Deprecated.UsedeepCopy()
to create verbatim copies of rules.
-
getLanguage
public Language getLanguage()
Description copied from interface:Rule
Get the Language of this Rule.- Specified by:
getLanguage
in interfaceRule
- Returns:
- the language
-
setLanguage
public void setLanguage(Language language)
Description copied from interface:Rule
Set the Language of this Rule.- Specified by:
setLanguage
in interfaceRule
- Parameters:
language
- the language
-
getMinimumLanguageVersion
public LanguageVersion getMinimumLanguageVersion()
Description copied from interface:Rule
Get the minimum LanguageVersion to which this Rule applies. If this value isnull
it indicates there is no minimum bound.- Specified by:
getMinimumLanguageVersion
in interfaceRule
- Returns:
- the minimum language version
-
setMinimumLanguageVersion
public void setMinimumLanguageVersion(LanguageVersion minimumLanguageVersion)
Description copied from interface:Rule
Set the minimum LanguageVersion to which this Rule applies.- Specified by:
setMinimumLanguageVersion
in interfaceRule
- Parameters:
minimumLanguageVersion
- the minimum language version
-
getMaximumLanguageVersion
public LanguageVersion getMaximumLanguageVersion()
Description copied from interface:Rule
Get the maximum LanguageVersion to which this Rule applies. If this value isnull
it indicates there is no maximum bound.- Specified by:
getMaximumLanguageVersion
in interfaceRule
- Returns:
- the maximum language version
-
setMaximumLanguageVersion
public void setMaximumLanguageVersion(LanguageVersion maximumLanguageVersion)
Description copied from interface:Rule
Set the maximum LanguageVersion to which this Rule applies.- Specified by:
setMaximumLanguageVersion
in interfaceRule
- Parameters:
maximumLanguageVersion
- the maximum language version
-
isDeprecated
public boolean isDeprecated()
Description copied from interface:Rule
Gets whether this Rule is deprecated. A deprecated Rule is one which:- is scheduled for removal in a future version of PMD
- or, has been removed and replaced with a non-functioning place-holder and will be completely removed in a future version of PMD
- or, has been renamed/moved and the old name will be completely removed in a future version of PMD
- Specified by:
isDeprecated
in interfaceRule
- Returns:
true
if this rule is deprecated
-
setDeprecated
public void setDeprecated(boolean deprecated)
Description copied from interface:Rule
Sets whether this Rule is deprecated.- Specified by:
setDeprecated
in interfaceRule
- Parameters:
deprecated
- whether this rule is deprecated
-
getName
public String getName()
Description copied from interface:Rule
Get the name of this Rule.- Specified by:
getName
in interfacePropertySource
- Specified by:
getName
in interfaceRule
- Returns:
- the name
-
setName
public void setName(String name)
Description copied from interface:Rule
Set the name of this Rule.
-
getSince
public String getSince()
Description copied from interface:Rule
Get the version of PMD in which this Rule was added. Returnnull
if not applicable.
-
setSince
public void setSince(String since)
Description copied from interface:Rule
Set the version of PMD in which this Rule was added.
-
getRuleClass
public String getRuleClass()
Description copied from interface:Rule
Get the implementation class of this Rule.- Specified by:
getRuleClass
in interfaceRule
- Returns:
- the implementation class name of this rule.
-
setRuleClass
public void setRuleClass(String ruleClass)
Description copied from interface:Rule
Set the class of this Rule.- Specified by:
setRuleClass
in interfaceRule
- Parameters:
ruleClass
- the class name of this rule.
-
getRuleSetName
public String getRuleSetName()
Description copied from interface:Rule
Get the name of the RuleSet containing this Rule.- Specified by:
getRuleSetName
in interfaceRule
- Returns:
- the name of th ruleset containing this rule.
- See Also:
RuleSet
-
setRuleSetName
public void setRuleSetName(String ruleSetName)
Description copied from interface:Rule
Set the name of the RuleSet containing this Rule.- Specified by:
setRuleSetName
in interfaceRule
- Parameters:
ruleSetName
- the name of the ruleset containing this rule.- See Also:
RuleSet
-
getMessage
public String getMessage()
Description copied from interface:Rule
Get the message to show when this Rule identifies a violation.- Specified by:
getMessage
in interfaceRule
- Returns:
- the message to show for a violation.
-
setMessage
public void setMessage(String message)
Description copied from interface:Rule
Set the message to show when this Rule identifies a violation.- Specified by:
setMessage
in interfaceRule
- Parameters:
message
- the message to show for a violation.
-
getDescription
public String getDescription()
Description copied from interface:Rule
Get the description of this Rule.- Specified by:
getDescription
in interfaceRule
- Returns:
- the description
-
setDescription
public void setDescription(String description)
Description copied from interface:Rule
Set the description of this Rule.- Specified by:
setDescription
in interfaceRule
- Parameters:
description
- the description
-
getExamples
public List<String> getExamples()
Description copied from interface:Rule
Get the list of examples for this Rule.- Specified by:
getExamples
in interfaceRule
- Returns:
- the list of examples for this rule.
-
addExample
public void addExample(String example)
Description copied from interface:Rule
Add a single example for this Rule.- Specified by:
addExample
in interfaceRule
- Parameters:
example
- a single example to add
-
getExternalInfoUrl
public String getExternalInfoUrl()
Description copied from interface:Rule
Get a URL for external information about this Rule.- Specified by:
getExternalInfoUrl
in interfaceRule
- Returns:
- the URL for external information about this rule.
-
setExternalInfoUrl
public void setExternalInfoUrl(String externalInfoUrl)
Description copied from interface:Rule
Set a URL for external information about this Rule.- Specified by:
setExternalInfoUrl
in interfaceRule
- Parameters:
externalInfoUrl
- the URL for external information about this rule.
-
getPriority
public RulePriority getPriority()
Description copied from interface:Rule
Get the priority of this Rule.- Specified by:
getPriority
in interfaceRule
- Returns:
- the priority
-
setPriority
public void setPriority(RulePriority priority)
Description copied from interface:Rule
Set the priority of this Rule.- Specified by:
setPriority
in interfaceRule
- Parameters:
priority
- the priority
-
getParserOptions
public ParserOptions getParserOptions()
This implementation returns a new instance ofParserOptions
using default settings.- Specified by:
getParserOptions
in interfaceRule
- Returns:
- the parser options
- See Also:
Rule.setPriority(RulePriority)
-
setUsesDFA
@Deprecated public void setUsesDFA()
Deprecated.Description copied from interface:Rule
Sets whether this Rule uses Data Flow Analysis.- Specified by:
setUsesDFA
in interfaceRule
-
setDfa
public void setDfa(boolean isDfa)
Description copied from interface:Rule
Sets whether this Rule uses Data Flow Analysis.
-
usesDFA
@Deprecated public boolean usesDFA()
Deprecated.Description copied from interface:Rule
Gets whether this Rule uses Data Flow Analysis.
-
isDfa
public boolean isDfa()
Description copied from interface:Rule
Gets whether this Rule uses Data Flow Analysis.
-
setUsesTypeResolution
@Deprecated public void setUsesTypeResolution()
Deprecated.Description copied from interface:Rule
Sets whether this Rule uses Type Resolution.- Specified by:
setUsesTypeResolution
in interfaceRule
-
setTypeResolution
public void setTypeResolution(boolean usingTypeResolution)
Description copied from interface:Rule
Sets whether this Rule uses Type Resolution.- Specified by:
setTypeResolution
in interfaceRule
-
usesTypeResolution
@Deprecated public boolean usesTypeResolution()
Deprecated.Description copied from interface:Rule
Gets whether this Rule uses Type Resolution.- Specified by:
usesTypeResolution
in interfaceRule
- Returns:
true
if Type Resolution is used.
-
isTypeResolution
public boolean isTypeResolution()
Description copied from interface:Rule
Gets whether this Rule uses Type Resolution.- Specified by:
isTypeResolution
in interfaceRule
- Returns:
true
if Type Resolution is used.
-
setUsesMultifile
@Deprecated public void setUsesMultifile()
Deprecated.Description copied from interface:Rule
Sets whether this Rule uses multi-file analysis.- Specified by:
setUsesMultifile
in interfaceRule
-
setMultifile
public void setMultifile(boolean multifile)
Description copied from interface:Rule
Sets whether this Rule uses multi-file analysis.- Specified by:
setMultifile
in interfaceRule
-
usesMultifile
@Deprecated public boolean usesMultifile()
Deprecated.Description copied from interface:Rule
Gets whether this Rule uses multi-file analysis.- Specified by:
usesMultifile
in interfaceRule
- Returns:
true
if the multi file analysis is used.
-
isMultifile
public boolean isMultifile()
Description copied from interface:Rule
Gets whether this Rule uses multi-file analysis.- Specified by:
isMultifile
in interfaceRule
- Returns:
true
if the multi file analysis is used.
-
usesRuleChain
@Deprecated public boolean usesRuleChain()
Deprecated.Description copied from interface:Rule
Gets whether this Rule uses the RuleChain.- Specified by:
usesRuleChain
in interfaceRule
- Returns:
true
if RuleChain is used.
-
isRuleChain
public boolean isRuleChain()
Description copied from interface:Rule
Gets whether this Rule uses the RuleChain.- Specified by:
isRuleChain
in interfaceRule
- Returns:
true
if RuleChain is used.
-
getRuleChainVisits
public List<String> getRuleChainVisits()
Description copied from interface:Rule
Gets the collection of AST node names visited by the Rule on the RuleChain.- Specified by:
getRuleChainVisits
in interfaceRule
- Returns:
- the list of AST node names
-
addRuleChainVisit
public void addRuleChainVisit(Class<? extends Node> nodeClass)
Description copied from interface:Rule
Adds an AST node by class to be visited by the Rule on the RuleChain.- Specified by:
addRuleChainVisit
in interfaceRule
- Parameters:
nodeClass
- the AST node to add to the RuleChain visit list
-
addRuleChainVisit
public void addRuleChainVisit(String astNodeName)
Description copied from interface:Rule
Adds an AST node by name to be visited by the Rule on the RuleChain.- Specified by:
addRuleChainVisit
in interfaceRule
- Parameters:
astNodeName
- the AST node to add to the RuleChain visit list as string
-
start
public void start(RuleContext ctx)
Description copied from interface:Rule
Start processing. Called once, before apply() is first called.
-
end
public void end(RuleContext ctx)
Description copied from interface:Rule
End processing. Called once, after apply() is last called.
-
addViolationWithMessage
public void addViolationWithMessage(Object data, Node node, String message)
-
addViolationWithMessage
public void addViolationWithMessage(Object data, Node node, String message, int beginLine, int endLine)
-
addViolationWithMessage
public void addViolationWithMessage(Object data, Node node, String message, Object[] args)
-
equals
public boolean equals(Object o)
Rules are equal if:- They have the same implementation class.
- They have the same name.
- They have the same priority.
- They share the same properties.
-
-