--
You received this message because you are subscribed to the Google Groups "Project Lombok" group.
To unsubscribe from this group and stop receiving emails from it, send an email to project-lombo...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
config.stopBubbling = true
@MyModel = @ToString(callSuper=true), @Data, @NoArgsConstructor
However, an attempt to run this fails.
The test model looks like:
@MyModel
public class Test {
private String t;
private String u;
}
But something like new Test().setU("s"); fails
Am I missing something?
|
|
| @AllArgsConstructor |
|
@Builder @Data |
| @NoArgsConstructor |
| @Value |