amiro 02/02/13 14:46:29
Modified: java/xdocs/sources/xalan xsltc_usage.xml
Log:
Ville's eagle eye caught a mistake where we should not have changed
compiler.XSLTC to cmdline.Compile
Revision Changes Path
1.23 +2 -2 xml-xalan/java/xdocs/sources/xalan/xsltc_usage.xml
Index: xsltc_usage.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/xsltc_usage.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- xsltc_usage.xml 12 Feb 2002 15:52:54 -0000 1.22
+++ xsltc_usage.xml 13 Feb 2002 22:46:29 -0000 1.23
@@ -460,7 +460,7 @@
<source>import java.io.File;
import java.net.MalformedURLException;
-import org.apache.xalan.xsltc.cmdline.Compile;
+import org.apache.xalan.xsltc.compiler.XSLTC;
...
private Translet compileStylesheet(String stylesheetName) {
Translet retval = null;
@@ -502,7 +502,7 @@
series of .class files. Their base name is derived from the name of the
stylesheet. </p>
-<p>The XSLT compiler object (org.apache.xalan.xsltc.cmdline.Compile), is
created,
+<p>The XSLT compiler object (org.apache.xalan.xsltc.compiler.XSLTC), is
created,
initialized and then its compile() method is called passing in a URL
to the stylesheet itself. Once the .class files have been written,
the translet is instantiated using Java reflection to create the Class
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]