How do I remove the package name from the XML output of the Java to XML Smook parser?
Sample Code:
Smooks smooks = new Smooks();
ExecutionContext executionContext = smooks.createExecutionContext();
StringWriter writer = new StringWriter();
smooks.filterSource(executionContext,
new JavaSource(inputJavaObject),
new StreamResult(writer));
System.out.println(writer.toString());