FileDocCategorySizeDatePackage
CustomerAccount.javaAPI DocExample805Thu Feb 17 20:00:58 GMT 2000AccountingMgmt.Account

CustomerAccount.java

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

package AccountingMgmt.Account;

import java.util.Vector;

/** @stereotype thing */
public class CustomerAccount extends Account {
    public Vector calcReceivablesByAge() {
        return new Vector();
    }

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

    private int paymentTerms;

    /**
     *@shapeType AggregationLink
     *    @associates <b>CustomerAccount</b>
     * @supplierCardinality 0..*
     * @clientCardinality 0..1
     * @supplierRole sub
     */
    private Vector lnkUnnamed;
}