- 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 Summary
Modifier and TypeMethodDescriptiongetBlock()
Returns the block of thetry
statement.Returns any catch blocks provided in thetry
statement.Returns the finally block provided in thetry
statement, ornull
if there is none.Returns any resource declarations provided in thetry
statement.
-
Method Details
-
getBlock
BlockTree getBlock()Returns the block of thetry
statement.- Returns:
- the block
-
getCatches
Returns any catch blocks provided in thetry
statement. The result will be an empty list if there are no catch blocks.- Returns:
- the catch blocks
-
getFinallyBlock
BlockTree getFinallyBlock()Returns the finally block provided in thetry
statement, ornull
if there is none.- Returns:
- the finally block
-
getResources
Returns any resource declarations provided in thetry
statement. The result will be an empty list if there are no resource declarations.- Returns:
- the resource declarations
-