views:

35

answers:

3

I mean stuff like typing "iter" and getting a "for" loop with a choice of what variable to iterate on , typing "soutv" to generate a "System.out.println" with the "variable=" already in ...

Thanks !

+4  A: 
aioobe
Darn, you were faster by 19 secs!!! (+1)
seanizer
Which is why he has 20k rep.
Joeri Hendrickx
A: 

Check under

Window -> Preferences -> Java -> Editor -> Templates

Reference:

seanizer
A: 

They are called Templates.

Go to Preferences > Java > Editor > Templates to see a list of pre-defined templates.

For example, sysout is:

System.out.println(${word_selection}${});${cursor}

You can also create your own.

dogbane