Are there any useful third-party coding patterns for Java in Eclipse? It would be nice with some for collections, for example. Any recommended?
When coding templates, I mean:
public static void main(String[] args) {
${cursor}
}
and
${array_type}[] ${result:newName(array)} = new ${array_type}[${array}.length + 1];
System.arraycopy(${array}, 0, ${result}, 0, ${array}.length);
${result}[${array}.length]= ${var};
and etc.
source
share