public class FallThroughCheck extends Check
The check honors special comments to suppress warnings about the fall through. By default the comments "fallthru", "fall through", "falls through" and "fallthrough" are recognized.
The following fragment of code will NOT trigger the check, because of the comment "fallthru".
case 3:
x = 2;
// fallthru
case 4:
The recognized relief comment can be configured with the property
reliefPattern. Default value of this regular expression
is "fallthru|fall through|fallthrough|falls through".
An example of how to configure the check is:
<module name="FallThrough">
<property name="reliefPattern"
value="Fall Through"/>
</module>
| Constructor and Description |
|---|
FallThroughCheck()
Creates new instance of the check.
|
| Modifier and Type | Method and Description |
|---|---|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
int[] |
getRequiredTokens()
The tokens that this check must be registered for.
|
void |
init()
Initialise the check.
|
void |
setCheckLastCaseGroup(boolean aValue)
Configures whether we need to check last case group or not.
|
void |
setReliefPattern(String aPattern)
Set the relief pattern.
|
void |
visitToken(DetailAST aAST)
Called to process a token.
|
beginTree, destroy, finishTree, getAcceptableTokens, getClassLoader, getFileContents, getLines, getTabWidth, getTokenNames, leaveToken, log, log, setClassLoader, setFileContents, setMessages, setTabWidth, setTokensgetCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, log, setId, setSeverityconfigure, contextualize, finishLocalSetup, getConfiguration, setupChildpublic int[] getDefaultTokens()
CheckgetDefaultTokens in class CheckTokenTypespublic int[] getRequiredTokens()
CheckgetRequiredTokens in class CheckTokenTypespublic void setReliefPattern(String aPattern)
aPattern - The regular expression pattern.public void setCheckLastCaseGroup(boolean aValue)
aValue - new value of the property.public void init()
Checkpublic void visitToken(DetailAST aAST)
CheckvisitToken in class CheckaAST - the token to processCopyright © 2001-2012. All Rights Reserved.