I have existing java application where GUI had mainly built using Swing and prefuse API (http://prefuse.org/). I want to develop eclipse plugin for this application. I have read in vogella tutorial that SWT is prefer to use for plugin development.
My problem is that if I should use SWT, then how can I convert each swing and prefuse API component to SWT?
PS: If I use existing GUI in my eclipse plugin project, then when I run the plugin as "Eclipse Application", it display GUI outside eclipse which I am not sure is correct behaviour for plugin development.
SWT_AWT
class to run the Swing code from SWT, example here – greg-449