Netbeans 6.9.1 Editing Method Comment Template

When I create a method comment in Netbeans by typing /** + ENTER, I get something like this

 /** * * @param nameOfParam * @return * @throws SQLException */ 

but in my case I like comments like this

 /** * * @param * nameOfParam - * @return * @throws SQLException */ 

Therefore, I need to change this template, but I can not find where. I can change every Netbeans behavior besides this.

Can anyone help?

+6
comments templates netbeans documentation-generation
source share
1 answer

Method comment templates cannot be set to the level expected in this question. These customization features can be added to the NetBeans IDE, and there is a specific way to do this, since the NetBeans IDE is an open source open source project. Typical steps to ask developers to add this feature to the NetBeans IDE will be

+3
source share

All Articles