Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/DataClassWithAnnotations.java
T
Toshiaki Kameyama be664e26f7 KT-18232: Kotlin code converter misses annotations
#KT-18232 Fixed
2017-08-17 02:30:06 +03:00

22 lines
338 B
Java
Vendored

@interface TestAnnotation {
}
public class Test {
@TestAnnotation
private String arg;
public Test(@TestAnnotation String arg) {
this.arg = arg;
}
@TestAnnotation
public String getArg() {
return arg;
}
@TestAnnotation
public void setArg(String arg) {
this.arg = arg;
}
}