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

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

Introduction

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

The text is from its open source code.

Method

voidaccept(ASTVisitor visitor)
Accepts the given visitor on a visit of the current node.
ASTgetAST()
Returns this node's AST.
SimpleNamegetName()
Returns the parameter name, or null if there is none.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
TypegetType()
Returns the paramter type.
booleanisVarargs()
Returns whether this method reference parameter is for the last parameter of a variable arity method (added in JLS3 API).
voidsetName(SimpleName name)
Sets or clears the parameter name.
voidsetType(Type type)
Sets the paramter type to the given type.
voidsetVarargs(boolean variableArity)
Sets whether this method reference parameter is for the last parameter of a variable arity method (added in JLS3 API).