Title: Message
|
Such
questions are more likely to get an answer if asked on the xsl-list at http://www.mulberrytech.com
It is
always helpful to indicate how far you have got in solving the problem, for
example whether you have yet discovered the existence of <xsl:output
method="text">.
Michael Kay
Hi
Friends,
How can I format data generated by a XSLT engine? I am
trying to write a xml-to-java application where a class file is defined in a
XML structure like
<class>
<package-name>com.jucabala</package-name>
<class-name>MyClass</class-name>
<parent>Form</parent>
<methods>
<method>
...
</method>
</methods>
</class>
and
transform the above XML in a java file:
package com.jucabala;
public class MyClass extends Form{
public void method1() {
}
}
How
can I do that? How can I control the text format of the
output?
Thanks in advance
Cleverson
|
|