| 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 CatchClauseT | 
TreeFactory.createCatchClause(FormalParameterListT parameters,
                 BlockStatementT child)
Creates a catch clause for a try-catch or a try-catch-finally
 statement. 
 | 
CatchClauseT | 
TreeFactory.createCatchClause(FormalParameterT parameter,
                 BlockStatementT child)
Creates a catch clause for a try-catch or a try-catch-finally
 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.visitCatchClause(CatchClauseT tree)
Visits a CatchClauseT. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
static CatchClauseT[] | 
CatchClauseT.EMPTY_ARRAY  |