Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Editing method comment template in Netbeans 6.9.1

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 looking like this

/**
 * 
 * @param 
 *     nameOfParam - 
 * @return

 * @throws SQLException
 */

So I need to change this template but I can't find where. I can change every single behavior of Netbeans besides this one.

Can somebody help?

like image 975
derroman Avatar asked Dec 10 '10 14:12

derroman


1 Answers

Method comment templates cannot be customized to the level which is expected in this question. These customization features can be added to the NetBeans IDE and there is a specific way how this can be done as the NetBeans IDE is an open source project working in open source way of development. The typical steps to ask the developers to add this feature in NetBeans IDE will be

  1. Log an enhancement request [RFE] in the NetBeans IDE issue tracker
  2. Notify the community about your RFE by writing mail to the NetBeans IDE users mailing list (users) and asking all to vote for your request
  3. According to the votes the RFE will get lined up for development in the next release cycle.
like image 180
Tushar Joshi Avatar answered Sep 21 '22 08:09

Tushar Joshi