3
javadocでメソッドを参照する方法は?
@linkタグを使用してメソッドにリンクするにはどうすればよいですか? 変わりたい: /** * Returns the Baz object owned by the Bar object owned by Foo owned by this. * A convenience method, equivalent to getFoo().getBar().getBaz() * @return baz */ public Baz fooBarBaz() に: /** * Returns the Baz object owned by the Bar object owned by Foo owned by …