FileDocCategorySizeDatePackage
CustomerWithAccount.javaAPI DocExample710Thu Feb 17 20:01:06 GMT 2000RelMgmt.PartyRole

CustomerWithAccount.java

/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/

package RelMgmt.PartyRole;

import java.util.Vector;

/** @stereotype role */
public class CustomerWithAccount extends RelMgmt.Party.PartyRole {
    public Vector calcReceivablesByAge() {
        return new Vector();
    }

    public static Vector listReceivablesByAge() {
        return new Vector();
    }

    /**
     * @clientCardinality 1
     * @supplierCardinality 0..*
     */
    private AccountingMgmt.Account.CustomerAccount lnkUnnamed1;
}