mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-06 15:53:19 +00:00
15 lines
360 B
Java
Vendored
15 lines
360 B
Java
Vendored
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
|
public abstract @interface Anno /* Anno*/ {
|
|
}
|
|
|
|
public final class TestClass /* TestClass*/ {
|
|
private int hello;
|
|
|
|
@null()
|
|
public TestClass(int);// .ctor(int)
|
|
|
|
public final int getHello();// getHello()
|
|
|
|
public final void setHello(@Anno() int);// setHello(int)
|
|
|
|
} |