Interface CatchBlockTree
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
CatchBlockTreeImpl
public interface CatchBlockTree extends Tree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockTree
block()
SyntaxToken
catchToken()
SyntaxToken
closeParenthesisToken()
SeparatedList<NamespaceNameTree>
exceptionTypes()
SyntaxToken
openParenthesisToken()
VariableIdentifierTree
variable()
-
-
-
Method Detail
-
catchToken
SyntaxToken catchToken()
-
openParenthesisToken
SyntaxToken openParenthesisToken()
-
exceptionTypes
SeparatedList<NamespaceNameTree> exceptionTypes()
-
variable
@Nullable VariableIdentifierTree variable()
-
closeParenthesisToken
SyntaxToken closeParenthesisToken()
-
block
BlockTree block()
-
-