FileDocCategorySizeDatePackage
BenefitAccount.javaAPI DocExample804Thu Feb 17 20:01:00 GMT 2000HumanResMgmt.Employment

BenefitAccount.java

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

package HumanResMgmt.Employment;

import java.math.BigDecimal;

/** @stereotype thing */
public class BenefitAccount {
    public void credit() {
    }

    public void debit() {
    }

    public void notifyWhenAtWarningLevel() {
    }

    public void notifyWhenAtMaxAllowed() {
    }

    private BigDecimal balance;

    /**
     *@supplierCardinality 1
     *@clientCardinality 0..*
     */
    private BenefitAccountDesc lnkUnnamed;
    private BigDecimal balanceWarningLevelCustom;
    private BigDecimal balanceMaxAllowedCustom;
}