SwingBox usage

The SwingBox library provides a BrowserPane component that is compatible with the JEditorPane.

Typical usage is the following:

// create the component BrowserPane swingbox = new BrowserPane(); // add the component to your GUI yourcontainer.add(swingbox); // display the page swingbox.setPage(new URL("http://cssbox.sourceforge.net"));

The distribution package contains a SwingBrowser demo application that shows how to integrate the component into your application.