netbeans中的函数头注释

Nem*_*emo 9 java netbeans

如何在Netbeans中生成这些函数头注释?是否有任何快捷方式可以提供模板以及参数名称?

/**
* Performs the Decrease Key operation
* @param index Index of the node in the RefArray whose key is to be decreased
* @param amount Amount by which key is to be reduced
*/
public void decreaseKey(int index, int amount)
{
}
Run Code Online (Sandbox Code Playgroud)

gig*_*dot 24

在方法,构造函数或字段的上方,键入/**并立即按Enter键.Netbeans应该为javadoc生成模板.