public class TestProgram { public static void main(String[] args) { //A single father with no children Father dave = new Father("Dave"); dave.setFundsInFathersWallet( 600.00 ); System.out.println( dave ); System.out.println(); //Father Doug and Son Mac Son mac = new Son("Mac","Mohawk College"); mac.setFathersName("Doug"); mac.setFundsInFathersWallet(500.00); mac.getAllowance(); System.out.println( mac ); System.out.println(); System.out.println("Dave's wallet: " + dave.getWallet() ); System.out.println("Mac's wallet: " + mac.getWallet() ); System.out.println("Doug's wallet: " + mac.wallet ); } }