A certain binding I need to perform is perplexing me.
Imagine two classes:

public class Fee {
}

public class Loan {
  private ArrayList<Fee> fee;
}

I need to write two separate bindings (using the same classes) that can
handle this:

<loan_container>
  <loan>
    <fee/>
    <fee/>
  </loan>
</loan_container>

AND this:

<loan_container>
  <loan>
     <somethingelse />
  </loan>
  <fees>
     <fee/>
     <fee/>
  </fees>
</loan_container>

How can I tell the second binding to place the fees in the Loan class?

Thanks a lot. JIBX has been a lifesaver for me.

Kendall
------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
jibx-users mailing list
jibx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to