jmlparser-parent
Toggle table of contents
3.28.2-J8.0-K13.5-SNAPSHOT
java
Target filter
java
Switch theme
Search in API
Skip to content
jmlparser-parent
jmlparser-core
/
com.github.javaparser.resolution
/
SymbolResolver
Symbol
Resolver
interface
SymbolResolver
(
source
)
Members
Functions
calculate
Type
Link copied to clipboard
abstract
fun
calculateType
(
expression
:
Expression
)
:
ResolvedType
For an expression it would find the corresponding resolved type.
resolve
Declaration
Link copied to clipboard
abstract
fun
<
T
>
resolveDeclaration
(
node
:
Node
,
resultClass
:
Class
<
T
>
)
:
T
For a reference it would find the corresponding declaration.
to
Resolved
Type
Link copied to clipboard
abstract
fun
<
T
>
toResolvedType
(
javaparserType
:
Type
,
resultClass
:
Class
<
T
>
)
:
T
For types it would find the corresponding resolved types.
to
Type
Declaration
Link copied to clipboard
abstract
fun
toTypeDeclaration
(
node
:
Node
)
:
ResolvedReferenceTypeDeclaration
For a node it would find the corresponding reference type declaration.