Class ASTExplicitConstructorInvocation

java.lang.Object
net.sourceforge.pmd.lang.ast.impl.AbstractNode<B,N>
net.sourceforge.pmd.lang.ast.impl.javacc.AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
net.sourceforge.pmd.lang.java.ast.ASTExplicitConstructorInvocation
All Implemented Interfaces:
GenericNode<JavaNode>, JjtreeNode<JavaNode>, Node, TextAvailableNode, ASTStatement, InvocationNode, JavaNode, MethodUsage, TypeNode, Reportable

public final class ASTExplicitConstructorInvocation extends AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode> implements InvocationNode, ASTStatement
An explicit constructor invocation, occurring at the start of a constructor declaration.

See JLS 8.8.7.1.


 ExplicitConstructorInvocation ::= TypeArguments? "this" ArgumentList ";"
                                 | TypeArguments? "super" ArgumentList ";"
                                 | Expression "." TypeArguments? "super" ArgumentList ";"

 
  • Field Details

  • Method Details

    • acceptVisitor

      protected <P, R> R acceptVisitor(JavaVisitor<? super P,? extends R> visitor, P data)
    • getArguments

      public @NonNull ASTArgumentList getArguments()
      Description copied from interface: InvocationNode
      Returns the node representing the list of arguments passed to the invocation. Can be null if this is an ASTEnumConstant.
      Specified by:
      getArguments in interface InvocationNode
    • getArgumentCount

      public int getArgumentCount()
      Returns the number of arguments of the called constructor.
    • isThis

      public boolean isThis()
      Returns true if this statement calls a constructor of the same class. The JLS calls that an alternate constructor invocation.
    • isSuper

      public boolean isSuper()
      Returns true if this statement calls a constructor of the direct superclass. The JLS calls that a superclass constructor invocation.
    • isQualified

      public boolean isQualified()
      Returns true if this is a qualified superclass constructor invocation. They allow a subclass constructor to explicitly specify the newly created object's immediately enclosing instance with respect to the direct superclass (ยง8.1.3). This may be necessary when the superclass is an inner class.
    • getExplicitTypeArguments

      public @Nullable ASTTypeArguments getExplicitTypeArguments()
      Description copied from interface: InvocationNode
      Returns the explicit type arguments if they exist.
      Specified by:
      getExplicitTypeArguments in interface InvocationNode
    • getQualifier

      public @Nullable ASTExpression getQualifier()
      Returns the qualifying expression if this is a qualified superclass constructor invocation.
    • getOverloadSelectionInfo

      public OverloadSelectionResult getOverloadSelectionInfo()
      Description copied from interface: MethodUsage
      Returns information about the overload selection for this call. Be aware, that selection might have failed (OverloadSelectionResult.isFailed()).
      Specified by:
      getOverloadSelectionInfo in interface MethodUsage
    • getTypeMirror

      public @NonNull JTypeMirror getTypeMirror()
      Description copied from interface: TypeNode
      Returns the compile-time type of this node. For example, for a string literal, returns the type mirror for String, for a method call, returns the return type of the call, etc.

      This method ignores conversions applied to the value of the node because of its context. For example, in 1 + "", the numeric literal will have type int, but it is converted to String by the surrounding concatenation expression. Similarly, in Collections.singletonList(1), the ASTNumericLiteral node has type int, but the type of the method formal is Integer, and boxing is applied at runtime. Possibly, an API will be added to expose this information.

      Specified by:
      getTypeMirror in interface TypeNode
      Returns:
      The type mirror. Never returns null; if the type is unresolved, returns TypeSystem.UNKNOWN.
    • getTypeMirror

      public @NonNull JTypeMirror getTypeMirror(TypingContext context)
      Specified by:
      getTypeMirror in interface TypeNode
    • jjtClose

      public void jjtClose()
      Overrides:
      jjtClose in class AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • acceptVisitor

      public final <P, R> R acceptVisitor(AstVisitor<? super P,? extends R> visitor, P data)
      Specified by:
      acceptVisitor in interface Node
    • addChild

      protected void addChild(net.sourceforge.pmd.lang.java.ast.AbstractJavaNode child, int index)
      Overrides:
      addChild in class AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • insertChild

      protected void insertChild(net.sourceforge.pmd.lang.java.ast.AbstractJavaNode child, int index)
      Overrides:
      insertChild in class AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • removeChildAtIndex

      protected void removeChildAtIndex(int childIndex)
      Overrides:
      removeChildAtIndex in class AbstractNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • setImage

      protected void setImage(String image)
      Overrides:
      setImage in class AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • setFirstToken

      protected void setFirstToken(JavaccToken token)
      Overrides:
      setFirstToken in class AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • setLastToken

      protected void setLastToken(JavaccToken token)
      Overrides:
      setLastToken in class AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • enlargeLeft

      protected void enlargeLeft(JavaccToken child)
      Overrides:
      enlargeLeft in class AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • setChild

      protected void setChild(net.sourceforge.pmd.lang.java.ast.AbstractJavaNode child, int index)
      Overrides:
      setChild in class AbstractNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
    • getSymbolTable

      public @NonNull JSymbolTable getSymbolTable()
      Description copied from interface: JavaNode
      Returns the symbol table for the program point represented by this node.
      Specified by:
      getSymbolTable in interface JavaNode
    • getTypeSystem

      public TypeSystem getTypeSystem()
      Description copied from interface: JavaNode
      Returns the type system with which this node was created. This is the object responsible for representing types in the compilation unit.
      Specified by:
      getTypeSystem in interface JavaNode
    • getRoot

      public final @NonNull ASTCompilationUnit getRoot()
      Specified by:
      getRoot in interface JavaNode
      Specified by:
      getRoot in interface Node
    • getXPathNodeName

      public final String getXPathNodeName()
      Specified by:
      getXPathNodeName in interface Node