Edit Comment Template in Netbeans PHP 6.8
Posted
by Shiro
on Stack Overflow
See other posts from Stack Overflow
or by Shiro
Published on 2010-04-19T02:38:26Z
Indexed on
2010/04/19
2:43 UTC
Read the original article
Hit count: 309
I would like to ask is there any way change the comment code template in Netbeans PHP 6.8
In eclipse, when I type /** ENTER , it would come out the comment template that I set in the setting, like this:
/**
* Apr 19, 2010 - Shiro
* Description
*
* @return unknown_type
*/
function test()
{
}
by Default Netbeans only will show the parameter in the function.
/**
*
* @param <type> $order_No
* @param <type> $array
*/
in Netbeans is there any possible I could found any customization about this, anyone know where is the setting for this?
© Stack Overflow or respective owner