mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
21 lines
938 B
Plaintext
Vendored
21 lines
938 B
Plaintext
Vendored
@java.lang.annotation.Retention
|
|
@kotlin.Metadata
|
|
public annotation class AllOpen
|
|
|
|
@AllOpen
|
|
@kotlin.Metadata
|
|
class Test {
|
|
private final @org.jetbrains.annotations.NotNull field internalProp: java.lang.String
|
|
private final field privateProp: java.lang.String
|
|
private final @org.jetbrains.annotations.NotNull field protectedProp: java.lang.String
|
|
private final @org.jetbrains.annotations.NotNull field publicProp: java.lang.String
|
|
public method <init>(): void
|
|
public @org.jetbrains.annotations.NotNull method getInternalProp$test_module(): java.lang.String
|
|
protected @org.jetbrains.annotations.NotNull method getProtectedProp(): java.lang.String
|
|
public @org.jetbrains.annotations.NotNull method getPublicProp(): java.lang.String
|
|
public method internalMethod$test_module(): void
|
|
private method privateMethod(): void
|
|
protected method protectedMethod(): void
|
|
public method publicMethod(): void
|
|
}
|