java.lang.Object
com.puppycrawl.tools.checkstyle.api.AutomaticBean
com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
com.puppycrawl.tools.checkstyle.api.Check
com.puppycrawl.tools.checkstyle.checks.AbstractFormatCheck
com.puppycrawl.tools.checkstyle.checks.AbstractNameCheck
com.puppycrawl.tools.checkstyle.checks.ParameterNameCheck
- All Implemented Interfaces:
- com.puppycrawl.tools.checkstyle.api.Configurable, com.puppycrawl.tools.checkstyle.api.Contextualizable
- public class ParameterNameCheck
- extends AbstractNameCheck
Checks that parameter names conform to a format specified
by the format property. The format is a
regular expression
and defaults to
^[a-z][a-zA-Z0-9]*$.
An example of how to configure the check is:
<module name="ParameterName"/>
An example of how to configure the check for names that begin with
a lower case letter, followed by letters, digits, and underscores is:
<module name="ParameterName">
<property name="format" value="^^[a-z](_?[a-zA-Z0-9]+)*$"/>
</module>
| Fields inherited from class com.puppycrawl.tools.checkstyle.api.Check |
|
| Fields inherited from class com.puppycrawl.tools.checkstyle.api.AutomaticBean |
|
| Methods inherited from class com.puppycrawl.tools.checkstyle.api.Check |
beginTree, destroy, finishTree, getAcceptableTokens, getClassLoader, getFileContents, getLines, getRequiredTokens, getTabWidth, getTokenNames, init, leaveToken, log, log, setClassLoader, setFileContents, setMessages, setTabWidth, setTokens |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ParameterNameCheck
public ParameterNameCheck()
- Creates a new
ParameterNameCheck instance.
getDefaultTokens
public int[] getDefaultTokens()
- Description copied from class:
com.puppycrawl.tools.checkstyle.api.Check
- Returns the default token a check is interested in. Only used if the
configuration for a check does not define the tokens.
mustCheckName
protected boolean mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST aAST)
- Description copied from class:
AbstractNameCheck
- Decides whether the name of an AST should be checked against
the format regexp.
- Overrides:
mustCheckName in class AbstractNameCheck