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 BlockTreeblock()List<CatchBlockTree>catchBlocks()BlockTreefinallyBlock()SyntaxTokenfinallyToken()SyntaxTokentryToken()
-
-
-
Method Detail
-
tryToken
SyntaxToken tryToken()
-
block
BlockTree block()
-
catchBlocks
List<CatchBlockTree> catchBlocks()
-
finallyToken
@Nullable SyntaxToken finallyToken()
-
-