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 …