一部の開発者は、checkstyle の検出結果を渡すために、コードで JAutodoc を実行するだけで、以下に示すような無意味なコメントが生成されます。私見、自動化されたドキュメントは、名前から取得した情報に何も追加しないため、悪いです。
より良い品質のjavadocコメントを測定またはチェックするツールはありますか? 自然言語処理は期待できないと思いますが、もしかしたら他にもアイデア・ツールはあるのでしょうか...
/** The message identification. */
private String messageIdentification;
/**
* Returns the messageIdentification.
*
* @return the messageIdentification.
*/
public String getMessageIdentification() {
return messageIdentification;
}
/**
* Sets the messageIdentification.
*
* @param messageIdentification the messageIdentification.
*/
public void setMessageIdentification(String messageIdentification) {
this.messageIdentification = messageIdentification;
}