I know if I write
sysout
in java code editor and type ctrl+space then sysout
replaces to System.out.println();
and other template:
for example for
:
for (${iteratorType:newType(java.util.Iterator)} ${iterator} = ${collection}.iterator(); ${iterator}.hasNext(); ) {
${type:elemType(collection)} ${name:newName(type)} = (${type}) ${iterator}.next();
${cursor}
}
How to use this template?
What I must to write and what I will see?
update: