LoginSignup
13
11

More than 5 years have passed since last update.

オーバーライドメソッドのjavadoc

Last updated at Posted at 2014-05-13
public interface A {
    /**
     * foo する
     */
    void foo();
}
public class B implements A {
    /**
     * foo する
     */
    @override
    public void foo() {
        //
    }
}

オーバーライドしたメソッドに同じことを書いていると、メンテが大変で、ミスのもとです。
これは、下記のように書けます。

public interface A {
    /**
     * foo する
     */
    void foo();
}
public class B implements A {
    /**
     * ${inheritDoc}
     */
    public void foo() {
        //
    }
}

これで、javadoc コマンドで生成した時に自動的に親クラスの記述が入ります。

13
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
11