home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap19 / exer1902 / Transaction.java < prev   
Encoding:
Java Source  |  1997-04-20  |  140 b   |  11 lines

  1. package banking;
  2.  
  3. import currency.Amount;
  4.  
  5. public class Transaction {
  6.    public Amount amount;
  7.  
  8.    public void process() {
  9.    }
  10. }
  11.