Java org.eclipse.jdt.core.dom SuperMethodInvocation fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom SuperMethodInvocation fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom SuperMethodInvocation.

The text is from its open source code.

Field

ChildListPropertyDescriptorARGUMENTS_PROPERTY
The "arguments" structural property of this node type (element type: Expression ).
ASTNode.NodeListtypeArguments
The type arguments (element type: Type ).
ASTNode.NodeListarguments
The list of argument expressions (element type: Expression ).

Constructor

SuperMethodInvocation(AST ast)
Creates a new AST node for a "super" method invocation expression owned by the given AST.

Method

ASTgetAST()
Returns this node's AST.
intgetFlags()
Returns the flags associated with this node.
intgetLength()
Returns the length in characters of the original source file indicating where the source fragment corresponding to this node ends.
SimpleNamegetName()
Returns the name of the method invoked in this expression.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
ObjectgetProperty(String propertyName)
Returns the value of the named property of this node, or null if none.
NamegetQualifier()
Returns the qualifier of this "super" method invocation expression, or null if there is none.
ASTNodegetRoot()
Returns the root node at or above this node; returns this node if it is a root.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
booleanisResolvedTypeInferredFromExpectedType()
Returns true if the resolved return type has been inferred from the assignment context (JLS3 15.12.2.8), false otherwise.
IMethodBindingresolveMethodBinding()
Resolves and returns the binding for the method invoked by this expression.
ITypeBindingresolveTypeBinding()
Resolves and returns the binding for the type of this expression.
voidsetFlags(int flags)
Sets the flags associated with this node to the given value.
voidsetName(SimpleName name)
Sets the name of the method invoked in this expression to the given name.
voidsetQualifier(Name name)
Sets or clears the qualifier of this "super" method invocation expression.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.