如何格式化 javadoc 注释中的标题,使其与@param
、@return
或@throws
. 我不是在问如何定义我自己的关键字,而是如何用与它们相似的粗体标题。
我已经尝试过<h1></h1>
,但它在 Eclipse 的 Javadoc 视图中看起来很糟糕,特别是它的大小要大得多。是否有替代方案或可行<h1></h1>
的方法?
/**
* foo
*
* @param x foo
* @return foo
* @throws foo
*/
public int foo(int x) { return x; }
屏幕截图来自 Eclipse。
更新
我认为这<strong>
还不够,因为它不添加换行符:
/**
* Introdcution
*
* <strong>Heading</strong>There is no line break.
* <strong>Heading</strong>There is no line break.
*
* @param x foo
* @return foo
* @throws foo
*/