假设我在 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>
换行,但仍使其与文本的其余部分内联显示?