hi, I am a beginner of commons.betwixt.
I just wondering if Betwixt can do this and how : when convert a Bean To
Xml,
Could betwixt recognize an object in the bean I input, and then change the
output
of it to another object(exp : Date) in the XML?
FOR EXAMPLE : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
If there is a Calendar in myBean, could Betwixt just write it as a Date in
the output XML?
// ====================================
// If the Bean for convert is =>
// ====================================
public class MyBean {
private String id;
private String name;
private String[] emails;
..........
private Calendar myCal;
..........
}
// ====================================
// The output XML I hoped is =>
// ====================================
<?xml version='1.0' encoding='UTF-8'?>
<mybean>
<String>id value</String>
<String>name value</String>
<String>email value</String>
..........
<Date>Date value</Date>
..........
</mybean>
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
appreciate for any re, thanks!
Dong
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]