views:

22

answers:

1

How to make Eclipse ignore some classes or packages when invoking autocompletion?

I have two classes with identical class name and different package in my project's classpath: bad.package.MyClass and good.package.MyClass.

When I type class name and type ctrl-space, Eclipse will suggest importing those two classes. The problem is that it is always suggesting the wrong one first. The wrong one happens to be alphabetically first.

How can I fix this? Is there somewhere a setting "do not try to autocomplete to class X"?

+1  A: 

You can set up ignored classes under

Preferences > Java > Appearance > Type Filters

Fabian Steeg