Class ExplicitConstructorInvocationStmt

java.lang.Object
com.github.javaparser.ast.Node
com.github.javaparser.ast.stmt.Statement
com.github.javaparser.ast.stmt.ExplicitConstructorInvocationStmt
All Implemented Interfaces:
NodeWithArguments<ExplicitConstructorInvocationStmt>, NodeWithRange<Node>, NodeWithTokenRange<Node>, NodeWithTypeArguments<ExplicitConstructorInvocationStmt>, Observable, Visitable, HasParentNode<Node>, Resolvable<ResolvedConstructorDeclaration>, Cloneable

A call to super or this in a constructor or initializer.
class X { X() { super(15); } }
class X { X() { this(1, 2); } }
Author:
Julio Vilmar Gesser
See Also:
SuperExpr, ThisExpr