Uses of Class
org.sonar.java.model.statement.CatchTreeImpl
-
Packages that use CatchTreeImpl Package Description org.sonar.java.ast.parser org.sonar.java.model.statement -
-
Uses of CatchTreeImpl in org.sonar.java.ast.parser
Methods in org.sonar.java.ast.parser that return CatchTreeImpl Modifier and Type Method Description CatchTreeImpl
JavaGrammar. CATCH_CLAUSE()
CatchTreeImpl
TreeFactory. newCatchClause(InternalSyntaxToken catchToken, InternalSyntaxToken openParenToken, VariableTreeImpl parameter, InternalSyntaxToken closeParenToken, BlockTreeImpl block)
Method parameters in org.sonar.java.ast.parser with type arguments of type CatchTreeImpl Modifier and Type Method Description TryStatementTreeImpl
TreeFactory. newTryCatch(com.sonar.sslr.api.typed.Optional<List<CatchTreeImpl>> catches, com.sonar.sslr.api.typed.Optional<TryStatementTreeImpl> finallyBlock)
TryStatementTreeImpl
TreeFactory. newTryWithResourcesStatement(InternalSyntaxToken tryToken, InternalSyntaxToken openParenToken, ResourceListTreeImpl resources, InternalSyntaxToken closeParenToken, BlockTreeImpl block, com.sonar.sslr.api.typed.Optional<List<CatchTreeImpl>> catches, com.sonar.sslr.api.typed.Optional<TryStatementTreeImpl> finallyBlock)
-
Uses of CatchTreeImpl in org.sonar.java.model.statement
Method parameters in org.sonar.java.model.statement with type arguments of type CatchTreeImpl Modifier and Type Method Description TryStatementTreeImpl
TryStatementTreeImpl. completeTryWithResources(InternalSyntaxToken tryToken, InternalSyntaxToken openParenToken, ResourceListTreeImpl resources, InternalSyntaxToken closeParenToken, BlockTreeImpl block, List<CatchTreeImpl> catches)
TryStatementTreeImpl
TryStatementTreeImpl. completeWithCatches(List<CatchTreeImpl> catches)
Constructor parameters in org.sonar.java.model.statement with type arguments of type CatchTreeImpl Constructor Description TryStatementTreeImpl(List<CatchTreeImpl> catches, InternalSyntaxToken finallyKeyword, BlockTreeImpl finallyBlock)
TryStatementTreeImpl(InternalSyntaxToken tryToken, InternalSyntaxToken openParenToken, ResourceListTreeImpl resources, InternalSyntaxToken closeParenToken, BlockTreeImpl block, List<CatchTreeImpl> catches)
-