JavaMethod

open class JavaMethod(ctx: AnalysisContext, impl: MethodTree) : JavaElement, NamedFunction

Functions

body
Link copied to clipboard
open override fun body(): Expression?
getAnnotations
Link copied to clipboard
abstract fun getAnnotations(): List<Annotation>
getResolvedCall
Link copied to clipboard
fun getResolvedCall(): ResolvedCall?
abstract fun getResolvedCall(context: ResolutionContext): ResolvedCall?
getVariableDescriptor
Link copied to clipboard
abstract fun getVariableDescriptor(context: ResolutionContext): VariableDescriptor?
hasBlockBody
Link copied to clipboard
open override fun hasBlockBody(): Boolean
hasBody
Link copied to clipboard
open override fun hasBody(): Boolean
hasDeclaredReturnType
Link copied to clipboard
open override fun hasDeclaredReturnType(): Boolean
hasInitializer
Link copied to clipboard
open override fun hasInitializer(): Boolean
impl
Link copied to clipboard
abstract fun impl(): Any
lastBlockStatementOrThis
Link copied to clipboard
abstract fun lastBlockStatementOrThis(): Expression
location
Link copied to clipboard
abstract fun location(): CompilerMessageSourceLocation?
parents
Link copied to clipboard
abstract fun parents(): List<Element>
type
Link copied to clipboard
fun type(): Type?
abstract fun type(context: ResolutionContext): Type?

Properties

annotationEntries
Link copied to clipboard
abstract val annotationEntries: List<AnnotationEntry>
bodyBlockExpression
Link copied to clipboard
open override val bodyBlockExpression: BlockExpression?
bodyExpression
Link copied to clipboard
open override val bodyExpression: Expression?
fqName
Link copied to clipboard
open override val fqName: FqName
initializer
Link copied to clipboard
open override val initializer: Expression?
isLocal
Link copied to clipboard
open override val isLocal: Boolean
modifierList
Link copied to clipboard
abstract val modifierList: ModifierList?
name
Link copied to clipboard
open override val name: String
nameAsName
Link copied to clipboard
open override val nameAsName: Name
nameAsSafeName
Link copied to clipboard
open override val nameAsSafeName: Name
parents
Link copied to clipboard
open override val parents: List<Element>
psiOrParent
Link copied to clipboard
abstract val psiOrParent: Element
receiverTypeReference
Link copied to clipboard
open override val receiverTypeReference: TypeReference?
text
Link copied to clipboard
abstract val text: String
typeConstraintList
Link copied to clipboard
open override val typeConstraintList: TypeConstraintList? = null
typeConstraints
Link copied to clipboard
open override val typeConstraints: List<TypeConstraint>
typeParameterList
Link copied to clipboard
open override val typeParameterList: TypeParameterList
typeParameters
Link copied to clipboard
open override val typeParameters: List<TypeParameter>
typeReference
Link copied to clipboard
open override val typeReference: TypeReference?
valueParameterList
Link copied to clipboard
open override val valueParameterList: ParameterList
valueParameters
Link copied to clipboard
open override val valueParameters: List<Parameter>

Inheritors

JavaConstructor
Link copied to clipboard