my question is: from the xml
scheme :
<topnode>
topNodeValue
<bottomnode/>
</topnode>
generated class with Jaxb looks like
class topnode {
List<bottomnode> bottomnodeList;
}
Which does not generate the value field to set value for topnode.
How can I acheive this? Thanks.