[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] Re: SWT Combo - jump to (sorted) entry

Which version of Eclipse are you using? If you use the standard Eclipse 3.2.1 SDK you should have jface included in your plugins directory.

You will need the org.eclipse.jface_{version-number}.jar plugin for the Autocomplete to work.

Thorsten Krebs wrote:

OK, I downloaded the jar and configured my build path accordingly -
eclipse automatically import the right package
(net.sf...AutocompleteComboSelector).

BUT: when I start my program, I get a NoClassDefFoundError:
org/ecplice/jface/fieldassist/IControlContentAdapter. Also, when I try
to import that class manually, eclipse does not find any package
starting with org.eclipse.jface - so I guess the JFace (or JFace
fieldassist?) library is missing / not configured.

What do I have to download / install / configure for eclipse to be able
to use this thing?

Thorsten

Peter Maas wrote:
http://dev.eclipse.org/newslists/news.eclipse.platform.swt/msg32164.html

Thorsten Krebs schrieb:
So far, that's fine! But there quite a lot of entries. So what I want is
some sort of key listener that jumps to the first entry with the letter
that was typed (or one entry before that if no entry with that letter
exists).

Does anyone haven an idea / snippet !?