| Package | Description |
|---|---|
| oracle.javatools.parser.java.v2 |
The parser API.
|
| oracle.javatools.parser.java.v2.model.statement |
The parser model API for statements.
|
| oracle.javatools.parser.java.v2.util |
Various utilities for use with the parser.
|
| oracle.jdeveloper.java.util |
Public utilities for use with the java model, including the parser.
|
| Modifier and Type | Method and Description |
|---|---|
abstract SourceFinallyClause |
SourceFactory.createFinallyClause(SourceBlockStatement child)
Creates a finally clause for a try statement.
|
| Modifier and Type | Method and Description |
|---|---|
abstract SourceTryStatement |
SourceFactory.createTryStatement(SourceBlockStatement tryClause,
SourceCatchClause[] catchClauses,
SourceFinallyClause finallyClause)
Creates a try, try-catch, try-catch-finally, or a try-finally
statement.
|
| Modifier and Type | Method and Description |
|---|---|
SourceFinallyClause |
SourceTryStatement.getFinallyClause() |
| Modifier and Type | Method and Description |
|---|---|
void |
SourceVisitor.whenEnterFinallyStatement(SourceFinallyClause sourceFinallyClause) |
void |
SourceVisitor.whenExitFinallyStatement(SourceFinallyClause sourceFinallyClause) |
| Modifier and Type | Method and Description |
|---|---|
static SourceFinallyClause |
SourceUtils.addFinallyClause(SourceTryStatement tryStmt,
SourceBlock finallyBlock)
Adds a finally clause to the try statement, using the given block
|