I am having a problem with generating Javadoc for Lombok getters and setters. I have tried both suggestions here. An example field and its text are as follows:
/**
* Identifier of the client
*
* @param clientID changes the id of the client
* @return id of the client
*/
@Getter @Setter private Integer clientID;
However, I see neither the getter nor the setter in the generated Javadoc. I am using 'protected' visibility on Eclipse (Project -> Generate Javadoc...). My Lombok version is 1.12.4. Any suggestions?