Tagged Questions
2
votes
4answers
2k views
NetBeans Code Templates ${date}?
I have this code template in Eclipse
@since ${date}
when entered i get something like this :
@since 4.8.2009
But when i add the same template (@since ${date}) to NetBeans
it outputs
@since ...
0
votes
1answer
70 views
expand template in netbeans 7.0.1 PHP doesn't work
When I enter an abbreviation of a code template and press the expand key nothing happens. I also get no suggestions when i wait for the code completion.
I had a look at Tools > Options > Editor > ...
0
votes
1answer
73 views
netbeans: code templates new line
To respect Zend's coding standard I want to have my methods this way:
public function myMethod()
{
//my code here
}
But when I type fnc + CTRL+SPACE the code template put it like this:
public ...
0
votes
0answers
69 views
How to auto generate code using code templates in NetBeans?
i am doing a project where i need to generate codes by looking at a xml file. i can read the xml files and get the necessary details and i know how to write the template file but i don't know how to ...
0
votes
1answer
499 views
vdoc for php in Netbeans 6.9.1 seems not working
When I insert a vdoc, like discriped here, Netbeans not offers any suggestions:
/* @var $persistenceManager Tx_Extbase_Persistence_Manager */
$persistenceManager = ...
0
votes
1answer
337 views
NetBeans code templates, with comments
I have following code template in NB 6.9.1:
function ${functionName}($$${param})
{
${selection}${cursor}
} // end: ${functionName} ()
NB formats this to:
function testFuncName($param)
{
}
...