Package | Description |
---|---|
javax.ide.model.java.source |
Various interfaces for use with Tree objects.
|
javax.ide.model.java.source.tree |
The Java AST.
|
Modifier and Type | Method and Description |
---|---|
abstract FinallyClauseT |
TreeFactory.createFinallyClause(BlockStatementT child)
Creates a finally clause for a try statement.
|
Modifier and Type | Method and Description |
---|---|
abstract TryStatementT |
TreeFactory.createTryStatement(BlockStatementT tryClause,
CatchClauseT[] catchClauses,
FinallyClauseT finallyClause)
Creates a try, try-catch, try-catch-finally, or a try-finally
statement.
|
TryStatementT |
TreeFactory.createTryStatement(BlockStatementT tryClause,
CatchClauseT catchClause,
FinallyClauseT finallyClause)
Creates a try, try-catch, try-catch-finally, or a try-finally
statement.
|
void |
TreeVisitor.visitFinallyClause(FinallyClauseT tree)
Visits a FinallyClauseT.
|
Modifier and Type | Method and Description |
---|---|
FinallyClauseT |
TryStatementT.getFinallyClause() |