|
//Creating
the JInternalFrame JInternalFrame
iframe = new JInternalFrame("WebRenderer",
true, true, true, true);
//
Adding WebRenderer to the JInternalFrame
- additional Swing components can be added
to this JInternalFrame iframe.getContentPane().add(browser.getCanvas());
//
Function to ensure JInternalFrame is registered
with WebRenderer browser.enableJInternalFrame(iframe);
|