5

Are the any useful 3rd party coding templates for Java in Eclipse? Would be nice with some for Collections for example. Any recommended?

By 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};

etc.

kornfridge
  • 4,774
  • 6
  • 26
  • 39

1 Answers1

3

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

Community
  • 1
  • 1
GuruKulki
  • 24,340
  • 43
  • 131
  • 192