【发布时间】:2015-11-23 05:36:54
【问题描述】:
我在为 Lombok getter 和 setter 生成 Javadoc 时遇到问题。我已经尝试了这两个建议here。示例字段及其文本如下:
/**
* Identifier of the client
*
* @param clientID changes the id of the client
* @return id of the client
*/
@Getter @Setter private Integer clientID;
但是,我在生成的 Javadoc 中既没有看到 getter 也没有看到 setter。我在 Eclipse 上使用“受保护”可见性(项目-> 生成 Javadoc ...)。我的龙目岛版本是 1.12.4。有什么建议?
【问题讨论】: