私の質問は、次のようにコメントする必要があります。
/**
* Getter for {@link #auto_key}
* @return {@link #auto_key}
*/
public String getAuto_key() {
return auto_key;
}
/**
* Setter for {@link #auto_key}
* @param auto_key the {@link #auto_key} to set
*/
public void setAuto_key(String auto_key) {
this.auto_key = auto_key;
}
基本的に質問したいのですが、getter と setter メソッドのコメントで {@link} を使用するのは正しいですか? または {@link} を使用せずに通常のコメントを使用する必要がありますか? そして、この方法はJava標準ですか?