1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<?xml version="1.0"?>
<mapping xmlns:xyz="http://www.acme.org/xyz">
<class name="simple5.Root">
<map-to xml="root" ns-prefix="xyz" ns-uri="http://www.acme.org/xyz"/>
<field name="name" type="string">
<bind-xml name="xyz:name" node="attribute"/>
</field>
<field name="child" type="simple5.Child">
<bind-xml name="xyz:child" node="element"/>
</field>
</class>
<class name="simple5.Child">
<field name="content" type="string">
<bind-xml node="text"/>
</field>
</class>
</mapping>
|