这是代码:
/**
* some text.
*/
public class Foo {
/**
* Some comment...
*/
public enum Bar {
/**
* some text.
*/
ABC,
/**
* some text.
*/
CDE;
};
}
Checkstyle 说Missing a Javadoc comment.
了两次(与ABC
和 与CDE
)。它是关于什么的?我应该在哪里添加评论?JavaDoc 工作得很好。