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

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

Introduction

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

The text is from its open source code.

Field

ChildPropertyDescriptorLEFT_HAND_SIDE_PROPERTY
The "leftHandSide" structural property of this node type (child type: Expression ).
ChildPropertyDescriptorRIGHT_HAND_SIDE_PROPERTY
The "rightHandSide" structural property of this node type (child type: Expression ).

Constructor

Assignment(AST ast)
Creates a new AST node for an assignment expression owned by the given AST.

Method

ExpressiongetLeftHandSide()
Returns the left hand side of this assignment expression.
Assignment.OperatorgetOperator()
Returns the operator of this assignment expression.
ExpressiongetRightHandSide()
Returns the right hand side of this assignment expression.
voidsetLeftHandSide(Expression expression)
Sets the left hand side of this assignment expression.
voidsetOperator(Assignment.Operator assignmentOperator)
Sets the operator of this assignment expression.
voidsetRightHandSide(Expression expression)
Sets the right hand side of this assignment expression.