I have just tried to compile the JCad project through JBuilder but it comes up with "cannot acces class org.apache.batik....." - now this has me a bit baffled because I compiled it and ran it yesterday!?!?
Anyway my question is, do I need the batik package?
this is in JCadExportSVGAction.java
eg.
import org.apache.batik.util.awt.svg.SVGGraphics2D;
import org.apache.batik.dom.GenericDOMImplementation;
import org.w3c.dom.Document;
import org.w3c.dom.DOMImplementation;
So what about the last two imports?
Carl
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have just tried to compile the JCad project through JBuilder but it comes up with "cannot acces class org.apache.batik....." - now this has me a bit baffled because I compiled it and ran it yesterday!?!?
Anyway my question is, do I need the batik package?
this is in JCadExportSVGAction.java
eg.
import org.apache.batik.util.awt.svg.SVGGraphics2D;
import org.apache.batik.dom.GenericDOMImplementation;
import org.w3c.dom.Document;
import org.w3c.dom.DOMImplementation;
So what about the last two imports?
Carl
I downloaded batik and it compiles, however the line in JCadExportSVGAction.java:
import org.apache.batik.util.awt.svg.SVGGraphics2D;
should be
import org.apache.batik.svggen.SVGGraphics2D;
(I think)
Carl