I would like to know what syntax or language is used to format code templates in netbeans ide. I mean, in the default templates, I see things like:
while (${EXP default="exp"}) { ${selection line}${cursor} }
and
// <editor-fold defaultstate="collapsed" desc="${comment}"> ${selection}${cursor}// </editor-fold>
And I experimented and did this:
int ${IDX newVarName default="loop"}; for (${IDX} = 0; ${IDX} < ${SIZE int default="size"}; ${IDX}++) { ${cursor} }
And it works, but I really don't know where "$ {IDX}" or "$ {SIZE int default =" size "}" or from "$ {selection} $ {cursor}" and from which other operators I can use to format my templates.
Is this some kind of script or programming language?
Where can I find this information?
source share