FileDocCategorySizeDatePackage
BenefitAccountDesc.javaAPI DocExample888Thu Feb 17 20:01:00 GMT 2000HumanResMgmt.Employment

BenefitAccountDesc.java

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

package HumanResMgmt.Employment;

import java.math.BigDecimal;

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

    private int type;
    private String description;
    private int qty;
    private int perDuration;
    private BigDecimal deductibleAmount;
    private boolean includesSpouse;
    private boolean includesChildren;
    private String eligibilityConditions;
    private boolean balanceGoesToZeroAtYearEnd;
    private BigDecimal balanceWarningLevel;
    private BigDecimal balanceMaxAllowed;
}