public class IllegalTokenTextCheck extends AbstractFormatCheck
Checks for illegal token text.
An example of how to configure the check to forbid String literals
containing "a href" is:
<module name="IllegalTokenText">
<property name="tokens" value="STRING_LITERAL"/>
<property name="format" value="a href"/>
</module>
An example of how to configure the check to forbid leading zeros in an integer literal, other than zero and a hex literal is:
<module name="IllegalTokenText">
<property name="tokens" value="NUM_INT,NUM_LONG"/>
<property name="format" value="^0[^lx]"/>
<property name="ignoreCase" value="true"/>
</module>
| Constructor and Description |
|---|
IllegalTokenTextCheck()
Instantiates a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
beginTree(DetailAST rootAST)
Called before the starting to process a tree.
|
int[] |
getAcceptableTokens()
The configurable token set.
|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
String |
getMessage()
Getter for message property.
|
void |
setIgnoreCase(boolean caseInsensitive)
Set whether or not the match is case sensitive.
|
void |
setMessage(String message)
Setter for message property.
|
void |
visitToken(DetailAST ast)
Called to process a token.
|
getFormat, getRegexp, setCompileFlags, setFormatdestroy, finishTree, getClassLoader, getFileContents, getLine, getLines, getRequiredTokens, getTabWidth, getTokenNames, init, isCommentNodesRequired, leaveToken, log, log, setClassLoader, setFileContents, setMessages, setTabWidth, setTokensgetCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, log, setId, setSeverityconfigure, contextualize, finishLocalSetup, getConfiguration, setupChildpublic IllegalTokenTextCheck()
public void beginTree(DetailAST rootAST)
Checkpublic int[] getDefaultTokens()
CheckgetDefaultTokens in class CheckTokenTypespublic int[] getAcceptableTokens()
CheckgetAcceptableTokens in class CheckTokenTypespublic void visitToken(DetailAST ast)
CheckvisitToken in class Checkast - the token to processpublic void setMessage(String message)
message - custom message which should be used
to report about violations.public String getMessage()
public void setIgnoreCase(boolean caseInsensitive)
caseInsensitive - true if the match is case insensitive.Copyright © 2001–2015. All rights reserved.