Class AbstractSuperCheck
java.lang.Object
com.puppycrawl.tools.checkstyle.api.AutomaticBean
com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
com.puppycrawl.tools.checkstyle.api.AbstractCheck
com.puppycrawl.tools.checkstyle.checks.coding.AbstractSuperCheck
- All Implemented Interfaces:
Configurable, Contextualizable
- Direct Known Subclasses:
SuperCloneCheck, SuperFinalizeCheck
Abstract class for checking that an overriding method with no parameters invokes the super method.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static classStack node for a method definition and a record of whether the method has a call to the super method.Nested classes/interfaces inherited from class AutomaticBean
AutomaticBean.OutputStreamOptions -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Deque<AbstractSuperCheck.MethodNode> Stack of methods.static final StringA key is pointing to the warning message text in "messages.properties" file. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled before the starting to process a tree.int[]The configurable token set.int[]Returns the default token a check is interested in.protected abstract StringReturns the name of the overriding method.int[]The tokens that this check must be registered for.private static booleanhasArguments(DetailAST methodCallDotAst) Does method have any arguments.private booleanDetermines whether an AST is a method definition for this check, without any parameters.private booleanIs same name of method.private booleanisSuperCall(DetailAST literalSuperAst) Determines whether a 'super' literal is a call to the super method for this check.private booleanDetermines whether a super call in overriding method.voidleaveToken(DetailAST ast) Called after all the child nodes have been process.voidvisitToken(DetailAST ast) Called to process a token.Methods inherited from class AbstractCheck
clearViolations, destroy, finishTree, getFileContents, getLine, getLineCodePoints, getLines, getTabWidth, getTokenNames, getViolations, init, isCommentNodesRequired, log, log, log, setFileContents, setTabWidth, setTokensMethods inherited from class AbstractViolationReporter
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityMethods inherited from class AutomaticBean
configure, contextualize, getConfiguration, setupChild
-
Field Details
-
MSG_KEY
A key is pointing to the warning message text in "messages.properties" file.- See Also:
-
methodStack
Stack of methods.
-
-
Constructor Details
-
AbstractSuperCheck
public AbstractSuperCheck()
-
-
Method Details
-
getMethodName
Returns the name of the overriding method.- Returns:
- the name of the overriding method.
-
getAcceptableTokens
public int[] getAcceptableTokens()Description copied from class:AbstractCheckThe configurable token set. Used to protect Checks against malicious users who specify an unacceptable token set in the configuration file. The default implementation returns the check's default tokens.- Specified by:
getAcceptableTokensin classAbstractCheck- Returns:
- the token set this check is designed for.
- See Also:
-
getDefaultTokens
public int[] getDefaultTokens()Description copied from class:AbstractCheckReturns the default token a check is interested in. Only used if the configuration for a check does not define the tokens.- Specified by:
getDefaultTokensin classAbstractCheck- Returns:
- the default tokens
- See Also:
-
getRequiredTokens
public int[] getRequiredTokens()Description copied from class:AbstractCheckThe tokens that this check must be registered for.- Specified by:
getRequiredTokensin classAbstractCheck- Returns:
- the token set this must be registered for.
- See Also:
-
beginTree
Description copied from class:AbstractCheckCalled before the starting to process a tree. Ideal place to initialize information that is to be collected whilst processing a tree.- Overrides:
beginTreein classAbstractCheck- Parameters:
rootAST- the root of the tree
-
visitToken
Description copied from class:AbstractCheckCalled to process a token.- Overrides:
visitTokenin classAbstractCheck- Parameters:
ast- the token to process
-
isSuperCall
Determines whether a 'super' literal is a call to the super method for this check.- Parameters:
literalSuperAst- the AST node of a 'super' literal.- Returns:
- true if ast is a call to the super method for this check.
-
isSuperCallInOverridingMethod
Determines whether a super call in overriding method.- Parameters:
ast- The AST node of a 'dot operator' in 'super' call.- Returns:
- true if super call in overriding method.
-
hasArguments
Does method have any arguments.- Parameters:
methodCallDotAst- DOT DetailAST- Returns:
- true if any parameters found
-
isSameNameMethod
Is same name of method.- Parameters:
ast- method AST- Returns:
- true if method name is the same
-
leaveToken
Description copied from class:AbstractCheckCalled after all the child nodes have been process.- Overrides:
leaveTokenin classAbstractCheck- Parameters:
ast- the token leaving
-
isOverridingMethod
Determines whether an AST is a method definition for this check, without any parameters.- Parameters:
ast- the method definition AST.- Returns:
- true if the method of ast is a method for this check.
-