What I'm trying to do is this:
List<String> list = new
and then hit Ctrl+Space and get ArrayList<String>()
(among others) to show up in the type proposal.
I thought I had this working previously, but I recently had to reinstall and can't find the setting for it.
This is Eclipse Java EE helios, but I can upgrade to indigo if need be.
I tried looking here for help, but didn't find the info I was looking for. I've tried checking all of the boxes under "Default Proposal Kinds" (Java -> Editor -> Content Assist -> Advanced" to no avail.
java.util.List
first (e.g. by using ctrl+space onList
), it gives me the suggestionsArrayList
andLinkedList
(and some more) when I hit space afterList<String> list = new
. With Indigo the same thing does not work. A fix is given for the question posted above, but it seems still dependent on 'popular' choices (e.g. it gave me theLinkedList
only after I had selected it once myself). – Jeffryjeffy