cscie160.hw4
Interface ATM

All Known Implementing Classes:
ATMImplementation, ATMProxy

public interface ATM


Method Summary
 void deposit(float amount)
           
 float getBalance()
           
 void withdraw(float amount)
           
 

Method Detail

deposit

public void deposit(float amount)
             throws ATMException

withdraw

public void withdraw(float amount)
              throws ATMException

getBalance

public float getBalance()
                 throws ATMException