IntelliJ:无法添加自定义 JavaDoc 标签

IntelliJ: Cannot Add Custom JavaDoc Tags

有什么问题吗?

以及如何在生成的 JavaDoc 中将 pre 定义为 Precondition?例如,支持的标签 @param 被翻译成

Parameters:
   .....

在生成的 JavaDoc 中。

我最终使用了一个解决方法:

/**
 * <pre>
 * "description here"
 * <b>Precondition:</b> "precondition here"
 * </pre>
 *
 * @param x  An integer.
 * other tags...
 */

自定义 "Precondition" 标记应以与生成的 JavaDoc 中其他支持的标记相同的格式打印出来。根据需要进行调整。