Class CatchClauseContext

  • All Implemented Interfaces:
    Context

    public class CatchClauseContext
    extends AbstractJavaParserContext<com.github.javaparser.ast.stmt.CatchClause>
    Author:
    Fred Lefévère-Laoide
    • Constructor Detail

      • CatchClauseContext

        public CatchClauseContext​(com.github.javaparser.ast.stmt.CatchClause wrappedNode,
                                  com.github.javaparser.symbolsolver.model.resolution.TypeSolver typeSolver)
    • Method Detail

      • solveSymbol

        public final com.github.javaparser.symbolsolver.model.resolution.SymbolReference<? extends com.github.javaparser.resolution.declarations.ResolvedValueDeclaration> solveSymbol​(String name)
      • solveSymbolAsValue

        public final Optional<com.github.javaparser.symbolsolver.model.resolution.Value> solveSymbolAsValue​(String name)
      • solveMethod

        public final com.github.javaparser.symbolsolver.model.resolution.SymbolReference<com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration> solveMethod​(String name,
                                                                                                                                                                              List<com.github.javaparser.resolution.types.ResolvedType> argumentsTypes,
                                                                                                                                                                              boolean staticOnly)
        Description copied from interface: Context
        We find the method declaration which is the best match for the given name and list of typeParametersValues.
      • localVariablesExposedToChild

        public List<com.github.javaparser.ast.body.VariableDeclarator> localVariablesExposedToChild​(com.github.javaparser.ast.Node child)
        Description copied from interface: Context
        The local variables that are declared in this immediate context and made visible to a given child. This list could include values which are shadowed.
      • parametersExposedToChild

        public List<com.github.javaparser.ast.body.Parameter> parametersExposedToChild​(com.github.javaparser.ast.Node child)
        Description copied from interface: Context
        The parameters that are declared in this immediate context and made visible to a given child. This list could include values which are shadowed.