9

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

Adrian Cox
  • 6,204
  • 5
  • 41
  • 68

1 Answers1

15

Check this out:

Window > Preferences > Java > Appearance > Type Filters

and add the java.awt package

Gurwinder Singh
  • 38,557
  • 6
  • 51
  • 76
krookedking
  • 2,203
  • 20
  • 21
  • 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 04 '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 '13 at 21:50