Interface TryTree
- All Superinterfaces:
- StatementTree,- Tree
A tree node for a 
try statement.
 For example:
 
   try
       block
   catches
   finally
       finallyBlock
 - See Java Language Specification:
- 
14.20 The try statement
- Since:
- 1.6
- 
Nested Class Summary
- 
Method SummaryModifier and TypeMethodDescriptiongetBlock()Returns the block of thetrystatement.Returns any catch blocks provided in thetrystatement.Returns the finally block provided in thetrystatement, ornullif there is none.Returns any resource declarations provided in thetrystatement.
- 
Method Details- 
getBlock
- 
getCatches
- 
getFinallyBlockBlockTree getFinallyBlock()Returns the finally block provided in thetrystatement, ornullif there is none.- Returns:
- the finally block
 
- 
getResources
 
-