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
1 Answers
3
votes
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: