Package | Description |
---|---|
jeb.api.ast |
This package contains classes used to represent Java Abstract Syntax Trees (AST).
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayElt
This AST element represents the element of an array.
|
class |
Definition
This AST element represents definition statements.
|
class |
Identifier
This AST element represents a Java identifier, or variable.
|
class |
InstanceField
This AST element represents a non-static field variable.
|
class |
StaticField
This AST element represents an static field variable.
|
Modifier and Type | Method and Description |
---|---|
ILeftExpression |
Assignment.getLeft()
Get the left part of the assignment.
|
Modifier and Type | Method and Description |
---|---|
static Assignment |
Assignment.build(ILeftExpression left,
IExpression right)
Create a new assignment.
|
void |
Assignment.setLeft(ILeftExpression left)
Set the left part of the assignment.
|