Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing Wicket applications in Eclipse 3.6. Is there a way to block out some packages from Eclipse autocomplete, so that I don't see suggestions for the unwanted AWT classes with the same name? I'd like to see the org.apache.wicket result below, but not the java.awt result.

Wicket TextField, not AWT please

share|improve this question

1 Answer

up vote 9 down vote accepted

Check this out: Window->Preferences->Java->Appearance->Type Filters and add the java.awt package

share|improve this answer
Thanks - I'd completely missed that preference page. At least the search I was trying will find this answer in the future. – Adrian Cox Apr 4 '11 at 12:56
Yes it is very easy to miss this as I always think its in Window->Preferences->Java->Editor->Content Assist. – Adam Gent Mar 23 at 21:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.