Changes in Jadex XML:

- Omits ignored subtag completely (not only content). 


Original Jibx config and result:

<customer>
  <street>12345 Happy Lane</street>
  <city>Plunk</city>
  <state>WA</state>
  <zip>98059</zip>
  <instructions>
    <!-- content skipped when unmarshalled -->
    <p>Leave package behind bushes to <b>left</b>
      of door</p>
    <!-- always marshalled as empty -->
  </instructions>
  <phone>888.555.1234</phone>
</customer>

<customer>
  <street>12345 Happy Lane</street>
  <city>Plunk</city>
  <state>WA</state>
  <zip>98059</zip>
  <instructions/>
  <phone>888.555.1234</phone>
</customer>

<binding>
  <mapping name="customer" class="example7.Customer">
    <value name="street" field="street"/>
    <value name="city" field="city"/>
    <value name="state" field="state"/>
    <value name="zip" field="zip"/>
    <structure name="instructions"/>
    <value name="phone" field="phone"/>
  </mapping>
</binding>
