フィールドのカプセル化でコメントがついてくる

こんな感じでコメントがあると

public class test {
    /** テスト */
    int a;
}

こんな感じでコメントがついてきます

public class test {
    /** テスト */
    private int a;

    public /** テスト */
    int getA() {
        return a;
    }

    public void setA(int a) {
        this.a = a;
    }
}