Closed
Description
Hi guys,
Maybe I missed it, but if I create a class with an @builder annotation and I add javadoc to the fields, I find that this javadoc is not "transported" onto the builder methods. It would be very helpful if this were possible.
If it is possible, I'm probably doing something wrong. How can I get it right?
My code looks like this:
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@Builder
@ToString
public class SomeClass {
/** The name of the item */
private final String name;
}
Cheers!
Metadata
Metadata
Assignees
Labels
No labels
Activity
[-]@Build and javadoc[/-][+]@Builder and javadoc[/+]jcayzac commentedon Jul 4, 2018
This is a problem for us as well. Lombok is great for removing boilerplate but it shouldn't also remove all our documentation 😢
keeperlink commentedon Aug 20, 2018
Same issue. Any plans to fix it?
[#1033] steps on the way to issue 1033: You can add cleanup tasks whi…