FileDocCategorySizeDatePackage
LiabilityAccount.javaAPI DocExample1797Sun Dec 14 22:47:40 GMT 2003oreilly.hcj.bankdata

LiabilityAccount

public abstract class LiabilityAccount extends Account
An account that represents a liability for a customer.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.3 $

Fields Summary
public static final oreilly.hcj.datamodeling.constraints.NumericConstraint
INTEREST_RATE_CONSTRAINT
Constraint for the property interestRate.
private Float
interestRate
The interest rate charged for outstanding balances.
Constructors Summary
Methods Summary
public java.lang.FloatgetInterestRate()
Getter for property interestRate.

return
Value of property interestRate.

		return interestRate;
	
public voidsetInterestRate(java.lang.Float interestRate)
Setter for property interestRate.

param
interestRate New value of property interestRate.


	            	 
	     
		INTEREST_RATE_CONSTRAINT.validate(interestRate);
		final Float oldInterestRate = this.interestRate;
		this.interestRate = interestRate;
		propertyChangeSupport.firePropertyChange("interestRate", oldInterestRate,
		                                         this.interestRate);