Interface TryStatementTree
-
- All Superinterfaces:
StatementTree
,Tree
- All Known Implementing Classes:
TryStatementTreeImpl
public interface TryStatementTree extends StatementTree
Try statementtry
block()
catchBlocks()
finallyfinallyBlock()
tryblock()
catchBlocks()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockTree
block()
List<CatchBlockTree>
catchBlocks()
BlockTree
finallyBlock()
SyntaxToken
finallyToken()
SyntaxToken
tryToken()
-
-
-
Method Detail
-
tryToken
SyntaxToken tryToken()
-
block
BlockTree block()
-
catchBlocks
List<CatchBlockTree> catchBlocks()
-
finallyToken
@Nullable SyntaxToken finallyToken()
-
-