Question

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.

Was it helpful?

Solution

Eclipse doesn't know which class implement the interface, and will not load them for all interfaces it has. BUT, Eclipse can learn what you use and show it to you on next use, maybe that's what happened to you, with time you taught Eclipse the implemented classes!

Here's an example of Eclipse before learning/and after learning what classes implement Map.

enter image description here

As you can see in the image, the first time, Eclipse didn't know anything other than HashMap, which I used before.

After that, I used TreeMap and LinkedHashMap by typing them manually (first time only) and Eclipse now cached them.

As the guys suggested, you can put the point on Map and click Ctrl+T it will give all the classes the implements this. Will be helpful the first time.

UPDATE in 2014!

As @K.Carpenter noticed, this feature is disabled in newer Eclipse versions. To re-enable it. Go to Window->Preferences->Java->Editor->Content Assist->Advanced.

Under Default Proposal Kinds, you will need to check Java Type Proposals

OTHER TIPS

Code like this is one of my pet hates of Java Generics. I use Google's Guava libraries to make my generics code more readable, and as a side-effect don't need this particular feature in Eclipse (though I agree it should be implemented). Guava has similar support for Sets too.

For example, I would normally declare my code as follows:

import com.google.common.collect.Lists;
...
List myList<String> = Lists.newArrayList();

I would like to see Eclipse doing this, but I guess that the content assist never worked without a start character (unless there is some hidden feature we don't know).

Well, having this in mind, what I do to workaround from 'getting locked with the most used implementations' is to look at the javadoc in the All Known Implementing Classes section, to see other possibilities that I could use.

I know it is not an in-Eclipse solution, but it may help some users that got stuck in the same problem.

Here's a way that you can add a new template to eclipse, then all you have to do is type arraylist, press ctrl + space and it creates the entire declaration for you. All you have to do is add the type and name.

Save this file, then import it to eclipse

Here’s how to import/export a template

  • Go to Window > Preferences > Java > Editor > Templates

  • Select the templates you want. NB! The checkboxes don’t indicate what’s selected; they are used to enable/disable a template. A template is selected if the whole row in the table is selected, so use Ctrl+Left Click or method specific to your OS to multi-select templates.

  • Click Import… and choose the XML file you received. Or Export… and provide a filename.

Type arrayList

Type arraylist

Press ctrl+space and choose arraylist

Press Ctrl + Space

Fill in the type and name Fill in the type and name

Not pretend to be an answer to your question but I use Quick Fix (Ctrl+1/Ctrl+2) to define a new local variable or field.

First, I type (maybe using Ctrl+Space for Content Assist):

new ArrayList<String>();

Then I press Ctrl+2 and L which assigns statement to new local variable by generating variable definition with type being instantiated:

ArrayList<String> arrayList = new ArrayList<String>();

Finally, I use tab (one may also use Enter) to navigate between inserted arrayList and ArrayList to specify the exact variable name and its type from drop-down list:

List<String> list = new ArrayList<String>();

Pressing tab for third time moves cursor to the end of statement.

Hope, you'll find this way useful too.

I am able to do this but it doesn't show up in the type proposal. Try typing:

List<String> list = new Ar

Hit Ctrl-Space and just accept the first suggestion. It completes to ArrayList<String>() for me (this is using the SpringSource Tool Suite Eclipse distribution).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top