Files
lombok/test/transform/resource/before/DataPlain.java
T
Roel Spilker fe7f0db2fc From now on it is possible to specify annotations to be placed on the method
or the parameter of the generated getter/setter methods.
2010-11-10 01:44:04 +01:00

28 lines
367 B
Java

import lombok.Data;
@lombok.Data class Data1 {
final int x;
String name;
}
@Data class Data2 {
final int x;
String name;
}
final @Data class Data3 {
final int x;
String name;
}
@Data
@lombok.EqualsAndHashCode(callSuper=true)
final class Data4 extends java.util.Timer {
final int x;
Data4() {
super();
}
}
@Data
class Data5 {
}
@Data
final class Data6 {
}