Package | Description |
---|---|
jeb.api.ast |
This package contains classes used to represent Java Abstract Syntax Trees (AST).
|
Modifier and Type | Method and Description |
---|---|
Label |
Goto.getLabel()
Get the label.
|
Label |
Continue.getLabel()
Get the optional continue label.
|
Label |
Break.getLabel()
Get the optional break label.
|
Modifier and Type | Method and Description |
---|---|
static Goto |
Goto.build(Label label)
Create a goto statement.
|
static Continue |
Continue.build(Label label)
Create a continue statement.
|
static Break |
Break.build(Label label)
Create a break statement.
|
void |
Goto.setLabel(Label label)
Set the label.
|
void |
Continue.setLabel(Label label)
Set the continue label.
|
void |
Break.setLabel(Label label)
Set the break label.
|