我正在寻找一种方法来向intellij IDEA添加natural-docs样式备注生成。 以类似于生成javadoc备注的方式。 我尝试了“设置” - > “代码样式”菜单但无法弄清楚如何操作。
自然文档示例:
/*
Function: Multiply
Multiplies two integers.
Parameters:
x - The first integer.
y - The second integer.
Returns:
The two integers multiplied together.
See Also:
<Divide>
*/
int Multiply (int x, int y)
{ return x * y; };
答案 0 :(得分:1)
当您键入/**
并按 Enter 时,IDEA只能为您的方法生成JavaDoc标准存根。它对自然文档一无所知。为了支持这样的文档生成,您需要编写一个插件或submit a feature request,以便IDEA开发人员考虑它。