| Package | Description | 
|---|---|
| javax.ide.model.java.source | 
 Various interfaces for use with Tree objects. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract BlockStatementT | 
TreeFactory.createBlockStatement(BlockT block)
Creates a block statement. 
 | 
| 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. 
 | 
abstract FinallyClauseT | 
TreeFactory.createFinallyClause(BlockStatementT child)
Creates a finally clause for a try statement. 
 | 
abstract SwitchStatementT | 
TreeFactory.createSwitchStatement(ExpressionT e,
                     BlockStatementT child)
Creates a switch statement. 
 | 
abstract SynchStatementT | 
TreeFactory.createSynchronizedStatement(ExpressionT e,
                           BlockStatementT child)
Creates a synchronized statement. 
 | 
abstract TryStatementT | 
TreeFactory.createTryCatchFinallyStatement(BlockStatementT tryClause,
                              FormalParameterT parameter,
                              BlockStatementT catchClause,
                              BlockStatementT finallyClause)
Creates a try-catch-finally statement with a single catch clause. 
 | 
abstract TryStatementT | 
TreeFactory.createTryCatchStatement(BlockStatementT tryClause,
                       FormalParameterT parameter,
                       BlockStatementT catchClause)
Creates a try-catch statement with a single catch clause. 
 | 
abstract TryStatementT | 
TreeFactory.createTryFinallyStatement(BlockStatementT child,
                         BlockStatementT finallyClause)
Creates a try-finally statement. 
 | 
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.visitBlockStatement(BlockStatementT tree)
Visits a BlockStatementT. 
 |