Review fixes around type enhancement and loading type use annotations

This commit is contained in:
Victor Petukhov
2020-12-17 15:37:16 +03:00
parent 9a52863fbd
commit 48d9812d9e
19 changed files with 148 additions and 338 deletions
@@ -48,8 +48,10 @@ interface JavaTypeParameterListOwner : JavaElement {
interface JavaAnnotation : JavaElement {
val arguments: Collection<JavaAnnotationArgument>
val classId: ClassId?
val isIdeExternalAnnotation: Boolean get() = false
val isFreshlySupportedTypeUseAnnotation: Boolean get() = false
val isIdeExternalAnnotation: Boolean
get() = false
val isFreshlySupportedTypeUseAnnotation: Boolean
get() = false
fun resolve(): JavaClass?
}