FileDocCategorySizeDatePackage
Pricer.javaAPI DocExample723Thu Feb 17 20:01:06 GMT 2000RelMgmt.PartyRole

Pricer.java

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

package RelMgmt.PartyRole;

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

/** @stereotype role */
public class Pricer extends RelMgmt.Party.PartyRole {
    public BigDecimal calcAvgMatlResPrice() {
        return new BigDecimal(0);
    }

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

    /**
     * @supplierCardinality 0..*
     * @clientCardinality 1
     */
    private ProductSaleMgmt.Product.ProductPrice lnkUnnamed2;
}