Massimo Manca
Massimo Manca

Reputation: 31

Eclipse plugin and swt

I need to convert a simple java application to an Eclipse plugin. What gui library I can use in Eclipse plugins? Only SWT or can I use also SWING? Thanks

Upvotes: 1

Views: 361

Answers (1)

Kai
Kai

Reputation: 39631

You could also use swing in Eclipse but SWT is the "native" UI toolkit of Eclipse so using this should be recommended. When you want to use Swing components you have to use the SWT_AWT bridge. But this brings you multiple UI threads which you have to keep in sync. Have a look at the following links:

Upvotes: 3

Related Questions