-
Swing Tabs with Draw2d
Hi all,
I'm currently working on a project which requires me to output a flowchart to which i am using an open source flowchart class. This class uses IFigure and and LightweightSystem from draw2d to ouput the flowchart as follows:
Shell shell = new Shell();
LightweightSystem lws = new LightweightSystem(shell);
ChartFigure flowchart = new ChartFigure();
lws.setContents(flowchart);
I want to take the flowchart created in the code about put it in a swing tabbed window, does anyone know if it is possible to combine swing and draw2d elements successfully?
Any input would be appreciated.
Thanks
Gary
-
I doubt that many here are familiar with your 3rd party library, and while I'm hopeful that you'll get a helpful reply here soon, you may have better luck at a forum for the library. Best of luck.
-
Thanks for the advice. :).