public class LocationReferenceCheck extends AbstractMethodCallCheck
Constructor and Description |
---|
LocationReferenceCheck() |
Modifier and Type | Method and Description |
---|---|
java.util.Set<java.lang.Integer> |
getRelevantTokens()
The tokens which this check is interested in.
|
protected boolean |
isCheckActive()
Determines if the check is configured to do anything at all.
|
protected boolean |
isRelevantCall(java.lang.String pQualifier,
java.lang.String pMethodName)
Filter method which determines if the given method call is considered relevant.
|
void |
setArgumentPosition(int pArgumentPosition) |
void |
setLocation(java.lang.String pLocation) |
void |
setMethodCalls(java.lang.String... pMethodCalls)
Setter.
|
void |
setVariableNames(java.lang.String... pVariableNames)
Setter.
|
protected void |
visitMethodCall(java.lang.String pMethodName,
com.puppycrawl.tools.checkstyle.api.DetailAST pMethodCallAst)
Visitor method called when a relevant method call is encountered.
|
protected void |
visitToken(BinaryName pBinaryClassName,
com.puppycrawl.tools.checkstyle.api.DetailAST pAst)
Called to process a token.
|
beginTree, getCurrentMethodName, leaveToken
finishTree, finishTree, getAcceptableTokens, getApiFixer, getClassDeclarationPosition, getCurrentBinaryName, getCurrentSimpleName, getDefaultTokens, getMyPackage, getRequiredTokens, leaveKnownType, leaveToken, visitKnownType, visitToken
clearMessages, destroy, getClassLoader, getFileContents, getLine, getLines, getMessages, getTabWidth, getTokenNames, init, isCommentNodesRequired, log, log, log, setClassLoader, setFileContents, setTabWidth, setTokens
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverity
public java.util.Set<java.lang.Integer> getRelevantTokens()
AbstractAddonsCheck
getRelevantTokens
in class AbstractMethodCallCheck
protected boolean isCheckActive()
AbstractMethodCallCheck
isCheckActive
in class AbstractMethodCallCheck
true
if processing should be performedprotected boolean isRelevantCall(@Nullable java.lang.String pQualifier, @Nonnull java.lang.String pMethodName)
AbstractMethodCallCheck
isRelevantCall
in class AbstractMethodCallCheck
pQualifier
- the qualifier of the method call (for a call like Foo.Bar.call()
, the
qualifier is Foo.Bar
)pMethodName
- the simple name of the called methodtrue
) or not (false
)public void setArgumentPosition(int pArgumentPosition)
public void setLocation(java.lang.String pLocation)
public void setMethodCalls(java.lang.String... pMethodCalls)
pMethodCalls
- list of qualified method calls to coverpublic void setVariableNames(java.lang.String... pVariableNames)
pVariableNames
- list of variable names to coverprotected void visitMethodCall(@Nonnull java.lang.String pMethodName, @Nonnull com.puppycrawl.tools.checkstyle.api.DetailAST pMethodCallAst)
AbstractMethodCallCheck
visitMethodCall
in class AbstractMethodCallCheck
pMethodName
- the simple name of the called methodpMethodCallAst
- AST of the call, useful for logging issues ( this is a METHOD_DEF, CTOR_CALL, or a
SUPER_CTOR_CALL token)protected void visitToken(@Nullable BinaryName pBinaryClassName, @Nonnull com.puppycrawl.tools.checkstyle.api.DetailAST pAst)
AbstractAddonsCheck
visitToken
in class AbstractMethodCallCheck
pBinaryClassName
- the currently active binary class namepAst
- the token to process