mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 18:23:13 +00:00
e1c39bbc60
Added toString() impl for builders in both eclipse and javac. Added all documentation, though it'll need some reviewing.
8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
import lombok.experimental.Builder;
|
|
|
|
@Builder
|
|
public class BuilderExample {
|
|
private String name;
|
|
private int age;
|
|
}
|