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