If I already have the types imported, in Eclipse 3.4, I get concrete default classes, but in 3.5 I just get the interface for java.util.Collections
. For example, hitting ctrl+space here:
Map map = new
ctrl+space
On 3.4, i get offered HashMap()
, on 3.5 Map()
(which then gets defaulted to a new impl with methods templated).
For List
, on 3.4 I'm offered ArrayList()
but on 3.5 List()
only.
Is this configurable in the templates or similar?