FileDocCategorySizeDatePackage
ProductAgreementDesc.javaAPI DocExample1049Thu Feb 17 20:01:04 GMT 2000ProductSaleMgmt.Product

ProductAgreementDesc.java

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

package ProductSaleMgmt.Product;

import java.util.Vector;
import java.math.BigDecimal;

/** @stereotype description */
public class ProductAgreementDesc {
    public BigDecimal calcAvgPriceDiscountAgreement() {
        return new BigDecimal(0);
    }

    public BigDecimal calcAvgPercentageDiscountAgreement() {
        return new BigDecimal(0);
    }

    public BigDecimal calcAvgCommissionAgreement() {
        return new BigDecimal(0);
    }

    public Vector listDiscountAgreements() {
        return new Vector();
    }

    public Vector listCommissionAgreements() {
        return new Vector();
    }

    /**
     * @supplierCardinality 0..*
     * @clientCardinality 0..*
     */
    private ProductSaleMgmt.ProductAgreement.CommissionAgreementDetail lnkUnnamed1;
}