Copyright © 2002 HYWY Software Corporation
Gopalan Suresh Raj
Chief Architect, HYWY Software
Step 3-C: Add Business Logic
The Account class:
Add logic to the generated create() method
 public int create(java.lang.String customerNames,
                    int startingBalance)
    throws java.lang.Exception {
    this.customerNames_ = customerNames;
    this.balance_ = startingBalance;
    this.openedOn_= Calendar.getInstance(TimeZone.getTimeZone("GMT")).getTime();
    return this.balance_;
 }