[S2] Data entry form for nested beans

2007-04-23 Thread Skip Hollowell
I have the following Bean, which represents an Account I am working on: public class PaymentBean { String acctNumber; DebtorBean debtor; // The person who owes money(s). MAkes sense to use this bean as I used it throughout the app PayorBean payor; // The person making the

Re: [S2] Data entry form for nested beans

2007-04-23 Thread Mark Menard
On 4/23/07 1:03 PM, Skip Hollowell [EMAIL PROTECTED] wrote: I have the following Bean, which represents an Account I am working on: public class PaymentBean { String acctNumber; DebtorBean debtor; PayorBean payor; CreditCardBean cc; SinglePaymentBean[] singlePayment; } I