Problems when compiling HTML files
Thorsten Möller <[email protected]> Mon, 15 Sep 2003 10:38:30 +0200
| Newsgroups | gmane.comp.java.enhydra.xmlc |
|---|---|
| Message-ID | <001701c37b64$bde1be20$33d71e8d@Thoro> |
I experienced two problems when compiling html files:
1.)
If I specify the compiler option "-g:none" (generate no debugging info) the
following exception is thrown:
[localize] Error: Invalid option "-g:none" in D:\xmlc\options.xmlc, valid
options are:
...
[localize] -g - Passed to javac
...
2. (minor)
If I specify the options "-keep" "-for-deferred-parsing" "-generate both"
the .java source files contain some unused imports:
every interface:
import org.w3c.dom.*;
every *Impl class:
import org.enhydra.xml.dom.DOMOps;
import org.enhydra.xml.xmlc.XMLCError;
import org.enhydra.xml.xmlc.XMLCUtil;
import org.enhydra.xml.xmlc.dom.XMLCDomFactory;
Thorsten