/******************************************************************************* * Třída Demo k demonstraci práce s dalšími třídami v projektu * * @author Tomáš Pitner * @version 1.00, 10.8.2005 */ public class Demo { public static void main(String[] args) { Person jp = new Person("Jiri Polak", 35); Person ln = new Person("Jan Novak", 33); Account jpAccount = new CheckedPrivateAccount(jp, 10000, 1000); Account lnAccount = new CheckedPrivateAccount(ln, 50000, 1000); System.out.println("Starting..."); jpAccount.writeInfo(); lnAccount.writeInfo(); System.out.println("Now transfering 200..."); jpAccount.transferTo(lnAccount, 200.0); jpAccount.writeInfo(); lnAccount.writeInfo(); System.out.println("Now transfering the rest..."); jpAccount.transferTo(lnAccount); jpAccount.writeInfo(); lnAccount.writeInfo(); } }