blob: afed6adf6490c5b67bd2fadb8b92836f9e14597d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//version 8:
import lombok.experimental.WithBy;
public class WithByInAnonymousClass {
Object annonymous = new Object() {
@WithBy
class Inner {
private Inner(String string) { }
private String string;
}
};
}
|