Package net.sourceforge.pmd.lang.rule
Class RuleReference
- java.lang.Object
-
- net.sourceforge.pmd.lang.rule.RuleReference
-
- All Implemented Interfaces:
Rule
,PropertySource
public class RuleReference extends Object implements Rule
This class represents a Rule which is a reference to Rule defined in another RuleSet. All details of the Rule are delegated to the underlying referenced Rule, but those operations which modify overridden aspects of the rule are explicitly tracked. Modification operations which set a value to the current underlying value do not override.
-
-
Field Summary
-
Fields inherited from interface net.sourceforge.pmd.lang.rule.Rule
VIOLATION_SUPPRESS_REGEX_DESCRIPTOR, VIOLATION_SUPPRESS_XPATH_DESCRIPTOR
-
-
Constructor Summary
Constructors Constructor Description RuleReference(Rule theRule, net.sourceforge.pmd.lang.rule.internal.RuleSetReference theRuleSetReference)
Create a new reference to the given rule.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addExample(String example)
Add a single example for this Rule.void
apply(Node target, RuleContext ctx)
Process the given node.Rule
deepCopy()
Creates a new copy of this rule.void
definePropertyDescriptor(PropertyDescriptor<?> propertyDescriptor)
Defines a new property.String
dysfunctionReason()
Returns a description of why the receiver may be dysfunctional.void
end(RuleContext ctx)
End processing.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.String
getOriginalName()
String
getOverriddenDescription()
List<String>
getOverriddenExamples()
String
getOverriddenExternalInfoUrl()
LanguageVersion
getOverriddenMaximumLanguageVersion()
String
getOverriddenMessage()
LanguageVersion
getOverriddenMinimumLanguageVersion()
String
getOverriddenName()
RulePriority
getOverriddenPriority()
Map<PropertyDescriptor<?>,Object>
getOverriddenPropertiesByPropertyDescriptor()
Returns a modifiable map of the property descriptors that don't use default values, to their overridden value.List<PropertyDescriptor<?>>
getOverriddenPropertyDescriptors()
Returns a modifiable list of the property descriptors that don't use default values.RulePriority
getPriority()
Get the priority of this Rule.Map<PropertyDescriptor<?>,Object>
getPropertiesByPropertyDescriptor()
Returns an unmodifiable map of descriptors to property values for the current receiver.<T> T
getProperty(PropertyDescriptor<T> propertyDescriptor)
Get the typed value for the given property.PropertyDescriptor<?>
getPropertyDescriptor(String name)
Get the PropertyDescriptor for the given property name.List<PropertyDescriptor<?>>
getPropertyDescriptors()
Get the descriptors of all defined properties.Rule
getRule()
String
getRuleClass()
Get the implementation class of this Rule.String
getRuleSetName()
Get the name of the RuleSet containing this Rule.net.sourceforge.pmd.lang.rule.internal.RuleSetReference
getRuleSetReference()
String
getSince()
Get the version of PMD in which this Rule was added.RuleTargetSelector
getTargetSelector()
Returns the object that selects the nodes to which this rule applies.boolean
hasDescriptor(PropertyDescriptor<?> descriptor)
Returns whether the specified property is defined on this property source, in which case it can be set or retrieved withPropertySource.getProperty(PropertyDescriptor)
andPropertySource.setProperty(PropertyDescriptor, Object)
.boolean
hasOverriddenAttributes()
Checks whether this rule reference explicitly overrides any of the possible attributes of the referenced rule.void
initialize(LanguageProcessor languageProcessor)
Initialize the rule using the language processor if needed.boolean
isDeprecated()
Gets whether this Rule is deprecated.Boolean
isOverriddenDeprecated()
boolean
isPropertyOverridden(PropertyDescriptor<?> descriptor)
Returns true if the given property has been set to a value somewhere in the XML.void
setDeprecated(boolean deprecated)
Sets whether this Rule is deprecated.void
setDescription(String description)
Set the description of this Rule.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
setName(String name)
Set the name of this Rule.void
setPriority(RulePriority priority)
Set the priority of this Rule.<T> void
setProperty(PropertyDescriptor<T> propertyDescriptor, T value)
Set the property value specified.void
setRuleClass(String ruleClass)
Set the class of this Rule.void
setRuleSetName(String name)
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
start(RuleContext ctx)
Start processing.
-
-
-
Constructor Detail
-
RuleReference
public RuleReference(Rule theRule, net.sourceforge.pmd.lang.rule.internal.RuleSetReference theRuleSetReference)
Create a new reference to the given rule.- Parameters:
theRule
- the referenced ruletheRuleSetReference
- the rule set, where the rule is defined
-
-
Method Detail
-
getRule
public Rule getRule()
-
getOverriddenMinimumLanguageVersion
public LanguageVersion getOverriddenMinimumLanguageVersion()
-
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
-
getOverriddenMaximumLanguageVersion
public LanguageVersion getOverriddenMaximumLanguageVersion()
-
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
-
isOverriddenDeprecated
public Boolean isOverriddenDeprecated()
-
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
-
getOverriddenName
public String getOverriddenName()
-
getOriginalName
public String getOriginalName()
-
setName
public void setName(String name)
Description copied from interface:Rule
Set the name of this Rule.
-
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
-
getOverriddenMessage
public String getOverriddenMessage()
-
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.
-
getOverriddenDescription
public String getOverriddenDescription()
-
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
-
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
-
getOverriddenExternalInfoUrl
public String getOverriddenExternalInfoUrl()
-
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.
-
getOverriddenPriority
public RulePriority getOverriddenPriority()
-
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
-
getOverriddenPropertyDescriptors
public List<PropertyDescriptor<?>> getOverriddenPropertyDescriptors()
Description copied from interface:PropertySource
Returns a modifiable list of the property descriptors that don't use default values.- Specified by:
getOverriddenPropertyDescriptors
in interfacePropertySource
- Returns:
- The descriptors that don't use default values
-
definePropertyDescriptor
public void definePropertyDescriptor(PropertyDescriptor<?> propertyDescriptor) throws IllegalArgumentException
Description copied from interface:PropertySource
Defines a new property. Properties must be defined before they can be set a value.- Specified by:
definePropertyDescriptor
in interfacePropertySource
- Parameters:
propertyDescriptor
- The property descriptor.- Throws:
IllegalArgumentException
- If there is already a property defined the same name.
-
getOverriddenPropertiesByPropertyDescriptor
public Map<PropertyDescriptor<?>,Object> getOverriddenPropertiesByPropertyDescriptor()
Description copied from interface:PropertySource
Returns a modifiable map of the property descriptors that don't use default values, to their overridden value. Modifications on the returned map don't affect this property source.- Specified by:
getOverriddenPropertiesByPropertyDescriptor
in interfacePropertySource
- Returns:
- The descriptors that don't use default values
-
setProperty
public <T> void setProperty(PropertyDescriptor<T> propertyDescriptor, T value)
Description copied from interface:PropertySource
Set the property value specified. This is also referred to as "overriding" the (default) value of a property.- Specified by:
setProperty
in interfacePropertySource
- Type Parameters:
T
- The underlying type of the property descriptor.- Parameters:
propertyDescriptor
- The property descriptor.value
- The value to set.
-
getRuleSetReference
public net.sourceforge.pmd.lang.rule.internal.RuleSetReference getRuleSetReference()
-
hasDescriptor
public boolean hasDescriptor(PropertyDescriptor<?> descriptor)
Description copied from interface:PropertySource
Returns whether the specified property is defined on this property source, in which case it can be set or retrieved withPropertySource.getProperty(PropertyDescriptor)
andPropertySource.setProperty(PropertyDescriptor, Object)
.- Specified by:
hasDescriptor
in interfacePropertySource
- Parameters:
descriptor
- The descriptor to look for- Returns:
true
if the descriptor is defined,false
otherwise.
-
isPropertyOverridden
public boolean isPropertyOverridden(PropertyDescriptor<?> descriptor)
Description copied from interface:PropertySource
Returns true if the given property has been set to a value somewhere in the XML.- Specified by:
isPropertyOverridden
in interfacePropertySource
- Parameters:
descriptor
- The descriptor- Returns:
- True if the property has been set
-
deepCopy
public Rule deepCopy()
Description copied from interface:Rule
Creates a new copy of this rule.
-
hasOverriddenAttributes
public boolean hasOverriddenAttributes()
Checks whether this rule reference explicitly overrides any of the possible attributes of the referenced rule.- Returns:
true
if there is at least one attribute overridden.false
if the referenced rule is referenced without any change.
-
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
-
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
-
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 name)
Description copied from interface:Rule
Set the name of the RuleSet containing this Rule.- Specified by:
setRuleSetName
in interfaceRule
- Parameters:
name
- 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.
-
getDescription
public String getDescription()
Description copied from interface:Rule
Get the description of this Rule.- Specified by:
getDescription
in interfaceRule
- Returns:
- 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.
-
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.
-
getPriority
public RulePriority getPriority()
Description copied from interface:Rule
Get the priority of this Rule.- Specified by:
getPriority
in interfaceRule
- Returns:
- the priority
-
getTargetSelector
public RuleTargetSelector getTargetSelector()
Description copied from interface:Rule
Returns the object that selects the nodes to which this rule applies. The selected nodes will be handed toRule.apply(Node, RuleContext)
.- Specified by:
getTargetSelector
in interfaceRule
-
initialize
public void initialize(LanguageProcessor languageProcessor)
Description copied from interface:Rule
Initialize the rule using the language processor if needed.- Specified by:
initialize
in interfaceRule
- Parameters:
languageProcessor
- The processor for the rule's language
-
start
public void start(RuleContext ctx)
Description copied from interface:Rule
Start processing. Called once per file, before apply() is first called.
-
apply
public void apply(Node target, RuleContext ctx)
Description copied from interface:Rule
Process the given node. The nodes that are fed to this method are the nodes selected byRule.getTargetSelector()
.
-
end
public void end(RuleContext ctx)
Description copied from interface:Rule
End processing. Called once per file, after apply() is last called.
-
getPropertyDescriptor
public PropertyDescriptor<?> getPropertyDescriptor(String name)
Description copied from interface:PropertySource
Get the PropertyDescriptor for the given property name.- Specified by:
getPropertyDescriptor
in interfacePropertySource
- Parameters:
name
- The name of the property.- Returns:
- The PropertyDescriptor for the named property,
null
if there is no such property defined.
-
getPropertyDescriptors
public List<PropertyDescriptor<?>> getPropertyDescriptors()
Description copied from interface:PropertySource
Get the descriptors of all defined properties. The properties are returned sorted by UI order.- Specified by:
getPropertyDescriptors
in interfacePropertySource
- Returns:
- The PropertyDescriptors in UI order.
-
getProperty
public <T> T getProperty(PropertyDescriptor<T> propertyDescriptor)
Description copied from interface:PropertySource
Get the typed value for the given property. Multi valued properties return immutable lists.- Specified by:
getProperty
in interfacePropertySource
- Type Parameters:
T
- The underlying type of the property descriptor.- Parameters:
propertyDescriptor
- The property descriptor.- Returns:
- The property value.
-
getPropertiesByPropertyDescriptor
public Map<PropertyDescriptor<?>,Object> getPropertiesByPropertyDescriptor()
Description copied from interface:PropertySource
Returns an unmodifiable map of descriptors to property values for the current receiver. The returned map has an entry for every defined descriptor (PropertySource.getPropertyDescriptors()
), if they were not specified explicitly, then default values are used.- Specified by:
getPropertiesByPropertyDescriptor
in interfacePropertySource
- Returns:
- An unmodifiable map of descriptors to property values
-
dysfunctionReason
public String dysfunctionReason()
Description copied from interface:PropertySource
Returns a description of why the receiver may be dysfunctional. Usually due to missing property values or some kind of conflict between values. Returns null if the receiver is ok.- Specified by:
dysfunctionReason
in interfacePropertySource
- Returns:
- String
-
-