Package org.sonar.plugins.java.api.tree
Interface CatchTree
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
CatchTreeImpl
@Beta public interface CatchTree extends Tree
'catch' in a 'try' statement. JLS 14.20catch (
parameter())block()- Since:
- Java 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockTreeblock()SyntaxTokencatchKeyword()SyntaxTokencloseParenToken()SyntaxTokenopenParenToken()VariableTreeparameter()
-
-
-
Method Detail
-
catchKeyword
SyntaxToken catchKeyword()
-
openParenToken
SyntaxToken openParenToken()
-
parameter
VariableTree parameter()
-
closeParenToken
SyntaxToken closeParenToken()
-
block
BlockTree block()
-
-