Details
Description
When Batik Libraries are used in a JNLP Environment, an error relating to an unserializable class is generated.
The Fix is easy, but would be nice, if I didn't have to employ it all of the time.
In batik-bridge/src/main/java/org/apache/batik/bridge/UserAgent.java everytime I do
an update.
Add "import java.io.Serializable;" to the list of Imports.
To the Interface Declaration:
public interface UserAgent extends Serializable {
This same change applies to the Batik 1.8 and the Batik 1.9 Library.
I do not have experience with any libraries predating Version 1.8
The Authors are listed as
cjolif@ilog.fr <Christophe Jolif>
stephane@hillion.org <Stephane Hillion>
Attached is Corrected Code.