I'm creating an object of type
org.apache.fop.render.awt.viewer.PreviewPanel.
The constructor is (FOUserAgent foUserAgent, Renderable renderable,
AWTRenderer renderer).
I'm running a client-server program in webstart.
Of course the PreviewPanel must be created as a client object.
This works if I pass a null for Renderable, but also seems to require
that I tie my AWTRenderer to a client Fop object to do a client
transform.
The transform runs a lot faster on the server.
I was wondering if I can do the transform on the server and just pass
the result into the client.
That appears to be the purpose of the Renderable class.
I don't see any FOP classes which return or implement a Renderable. How
do I generate one?