Package org.sonar.plugins.java.api.tree
Interface CatchTree
- All Superinterfaces:
Tree
- All Known Implementing Classes:
CatchTreeImpl
'catch' in a 'try' statement.
JLS 14.20
catch (parameter()
)block()
- Since:
- Java 1.3
-
Nested Class Summary
-
Method Summary
-
Method Details
-
catchKeyword
SyntaxToken catchKeyword() -
openParenToken
SyntaxToken openParenToken() -
parameter
VariableTree parameter() -
closeParenToken
SyntaxToken closeParenToken() -
block
BlockTree block()
-