FileDocCategorySizeDatePackage
CostAndOverheadAllocation.javaAPI DocExample1045Thu Feb 17 20:01:04 GMT 2000ProductSaleMgmt.ProductAssessment

CostAndOverheadAllocation.java

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

package ProductSaleMgmt.ProductAssessment;

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

/** @stereotype moment-interval */
public class CostAndOverheadAllocation {
    public void makeCostAndOverheadAllocation() {
    }

    public boolean isCurrentlyApplicable() {
        return false;
    }

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

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

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

    private int interval;
    private BigDecimal costAllocation;
    private BigDecimal overheadAllocation;
    private String justification;
    private int status;
}