0

假设我在 JavaDoc 定义中有以下部分:

/**
 * [... blah blah ...] It will then call the <code>onFile...()</code>-methods
 * on the provided event handler to report any changes. [... blah blah ...]
 */

这可能会导致尴尬的文本换行,因此它最终会跨越这样的行,例如:

............................... It will then call the onFile...
()-methods on the provided event handler to report any changes.

是否可以在 JavaDoc 定义中标记某些部分,例如防止在该部分内换行?在上面的示例中:是否有某种方法可以防止-tagonFile...()内部<code>换行,但仍使其与文本的其余部分内联显示?

4

1 回答 1

0

<nobr>-tag 不是标准的 html,因此以下可能是“不好的样式”,但它有效:

/**
 * [... blah blah ...] It will then call the <nobr><code>onFile...()</code>
 * </nobr>-methods on the provided event handler to report any changes.
 * [... blah blah ...]
 */

它将强制显示的文本提前换行:

............................... It will then call the
onFile...()-methods on the provided event handler to report any
changes.

现在,我只希望我可以定义自己的“宏标签”,这样我就可以<nbc> ... </nbc>使用<nobr><code> ... </code></nobr>.

于 2014-02-05T18:03:59.020 回答