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

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

Introduction

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

The text is from its open source code.

Field

booleanhasParentheses
Indicates whether parentheses are present or not.
ASTNode.NodeListparameters
The parameter declarations (element type: VariableDeclaration ).

Method

ASTNodegetBody()
Returns the body of this lambda expression.
voidsetBody(ASTNode body)
Sets the body of this lambda expression.
voidsetParentheses(boolean hasParentheses)
Sets whether this lambda expression has parentheses around its parameters or not.