Class AbstractSuperCheck

All Implemented Interfaces:
Configurable, Contextualizable
Direct Known Subclasses:
SuperCloneCheck, SuperFinalizeCheck

public abstract class AbstractSuperCheck extends AbstractCheck
Abstract class for checking that an overriding method with no parameters invokes the super method.
  • Field Details

  • Constructor Details

  • Method Details

    • getMethodName

      protected abstract String getMethodName()
      Returns the name of the overriding method.
      Returns:
      the name of the overriding method.
    • getAcceptableTokens

      public int[] getAcceptableTokens()
      Description copied from class: AbstractCheck
      The 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:
      getAcceptableTokens in class AbstractCheck
      Returns:
      the token set this check is designed for.
      See Also:
    • getDefaultTokens

      public int[] getDefaultTokens()
      Description copied from class: AbstractCheck
      Returns the default token a check is interested in. Only used if the configuration for a check does not define the tokens.
      Specified by:
      getDefaultTokens in class AbstractCheck
      Returns:
      the default tokens
      See Also:
    • getRequiredTokens

      public int[] getRequiredTokens()
      Description copied from class: AbstractCheck
      The tokens that this check must be registered for.
      Specified by:
      getRequiredTokens in class AbstractCheck
      Returns:
      the token set this must be registered for.
      See Also:
    • beginTree

      public void beginTree(DetailAST rootAST)
      Description copied from class: AbstractCheck
      Called before the starting to process a tree. Ideal place to initialize information that is to be collected whilst processing a tree.
      Overrides:
      beginTree in class AbstractCheck
      Parameters:
      rootAST - the root of the tree
    • visitToken

      public void visitToken(DetailAST ast)
      Description copied from class: AbstractCheck
      Called to process a token.
      Overrides:
      visitToken in class AbstractCheck
      Parameters:
      ast - the token to process
    • isSuperCall

      private boolean isSuperCall(DetailAST literalSuperAst)
      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

      private static boolean hasArguments(DetailAST methodCallDotAst)
      Does method have any arguments.
      Parameters:
      methodCallDotAst - DOT DetailAST
      Returns:
      true if any parameters found
    • isSameNameMethod

      private boolean isSameNameMethod(DetailAST ast)
      Is same name of method.
      Parameters:
      ast - method AST
      Returns:
      true if method name is the same
    • leaveToken

      public void leaveToken(DetailAST ast)
      Description copied from class: AbstractCheck
      Called after all the child nodes have been process.
      Overrides:
      leaveToken in class AbstractCheck
      Parameters:
      ast - the token leaving
    • isOverridingMethod

      private boolean isOverridingMethod(DetailAST ast)
      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.