Class ClassOrInterfaceDeclarationContext

  • All Implemented Interfaces:
    Context

    public class ClassOrInterfaceDeclarationContext
    extends AbstractJavaParserContext<com.github.javaparser.ast.body.ClassOrInterfaceDeclaration>
    Author:
    Federico Tomassetti
    • Constructor Detail

      • ClassOrInterfaceDeclarationContext

        public ClassOrInterfaceDeclarationContext​(com.github.javaparser.ast.body.ClassOrInterfaceDeclaration wrappedNode,
                                                  com.github.javaparser.symbolsolver.model.resolution.TypeSolver typeSolver)
    • Method Detail

      • solveSymbol

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

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

        public com.github.javaparser.symbolsolver.model.resolution.SymbolReference<com.github.javaparser.resolution.declarations.ResolvedTypeDeclaration> solveType​(String name)
      • solveMethod

        public 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.
      • solveConstructor

        public com.github.javaparser.symbolsolver.model.resolution.SymbolReference<com.github.javaparser.resolution.declarations.ResolvedConstructorDeclaration> solveConstructor​(List<com.github.javaparser.resolution.types.ResolvedType> argumentsTypes)
        Description copied from interface: Context
        We find the method declaration which is the best match for the given name and list of typeParametersValues.
      • fieldsExposedToChild

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