<stateData>
<MyTag name="voltage">12</Mytag>
<MyTag name="Fuel">72</Mytag>
</stateData>
Sorry Guys, I did not meant to be lazy. Ok Here is the question: I have xml structure with above block of xml which some tags has both value and attribute in tag notation( MyTag has value of 12 and has an attribute name). using Jibx how I can create binding schema for such case. Obviously for xml tags with only value or with attributes without tag value is normal, but when you have both of them I don't know what to do. Thanks.
Use
<value/>
element twice in your binding. Once withattribute
and once withtext
styles.For example - to bind the following
StateData
class to the XML you want......use the binding below: