More patterns for Java with Eclipse?

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.

+5
source share
1 answer

here you can find any type of code template. Useful Java Eclipse Code Templates

+3
source

All Articles