FileDocCategorySizeDatePackage
OnlineCheckingAccount.javaAPI DocExample1848Sun Dec 14 22:47:42 GMT 2003oreilly.hcj.bankdata

OnlineCheckingAccount

public class OnlineCheckingAccount extends AssetAccount
An account used for online checking including transactions.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.3 $

Fields Summary
public static final oreilly.hcj.datamodeling.constraints.NumericConstraint
CREDIT_LIMIT_CONSTRAINT
Constraint for the property creditLimit.
private Float
creditLimit
The amount below zero that this account can be before transactions start beign rejected.
Constructors Summary
Methods Summary
public java.lang.FloatgetCreditLimit()
Getter for property creditLimit.

return
Value of property creditLimit.

		return creditLimit;
	
public voidsetCreditLimit(java.lang.Float creditLimit)
Setter for property creditLimit.

param
creditLimit New value of property creditLimit.


	            	 
	     
		CREDIT_LIMIT_CONSTRAINT.validate(creditLimit);
		final Float oldCreditLimit = this.creditLimit;
		this.creditLimit = creditLimit;
		propertyChangeSupport.firePropertyChange("creditLimit", oldCreditLimit,
		                                         this.creditLimit);