13
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?