Hi Fredrik,
Fredrik Medby Hagen wrote:
By the way, what is the difference between an interactive document and an
dynamic document. What different behaviour does Batik show due to the
documentstate?
From the BridgeContext (I'll copy some of it over to the Canvas as
that is where most people encounter this):
---
/**
* Indicates that no DOM listeners should be registered.
* In this case the generated GVT tree should be totally
* independent of the DOM tree.
*/
public final static int STATIC = 0;
/**
* Indicates that DOM listeners should be registered to support,
* 'interactivity' this includes anchors and cursors, but does not
* include support for DOM modifications.
*/
public final static int INTERACTIVE = 1;
/**
* Indicates that all DOM listeners should be registered. This supports
* 'interactivity' (anchors and cursors), as well as DOM modification
* listeners to update the GVT rendering tree.
*/
public final static int DYNAMIC = 2;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]