mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
21 lines
680 B
Plaintext
Vendored
21 lines
680 B
Plaintext
Vendored
@java.lang.annotation.Retention
|
|
public annotation class Anno {
|
|
public abstract method foo(): Foo
|
|
public abstract method foos(): Foo[]
|
|
public abstract method klass(): java.lang.Class
|
|
public abstract method klasses(): java.lang.Class[]
|
|
public abstract method level(): kotlin.DeprecationLevel
|
|
public abstract method levels(): kotlin.DeprecationLevel[]
|
|
}
|
|
|
|
|
|
public final class EnumKClassAnnotationKt {
|
|
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
|
public final static @Anno method foo(): void
|
|
}
|
|
|
|
@java.lang.annotation.Retention
|
|
public annotation class Foo {
|
|
public abstract method value(): java.lang.String
|
|
}
|