Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

OTExample ATM/Main

< OTExample ATM
Revision as of 08:59, 24 February 2010 by Unnamed Poltroon (Talk) (New page: ==Main for the ATM example== Use this simple main program for running the ATM example: <source lang="java"> public class Main { public static void main(String[] args) { Bank ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Main for the ATM example

Use this simple main program for running the ATM example:

public class Main {
 
    public static void main(String[] args) {
        Bank bb = new Bank("Bust-Bank");
 
        Account acc1 = new Account(bb);
 
 
        Bank cb = new Bank("Crash-Bank");
        Account acc2 = new Account(cb);
 
        ATM cbATM = new ATM(cb);
        System.out.println("Both accounts get 1000 Euro seed capital.");
        acc1.credit(1000);
        acc2.credit(1000);
 
        System.out.println("Withdrawing 200 Euro from both accounts:");
        cbATM.payCash(acc1, 200);
        System.out.println("Balance of foreign account: "+ acc1.getBalance()+ " Euro");
        cbATM.payCash(acc2, 200);
        System.out.println("Balance of home account: "+ acc2.getBalance()+ " Euro");
        System.out.println("ATMs fee account balance: " + cbATM.getFeeAccountBalance()+ " Euro");
 
        System.out.println("---------------------------------------------------");
        try {
            System.out.println("Get balance of foreign account via atm: ");
            System.out.println(cbATM.getBalance(acc1)+ " Euro");
        } catch (AccessDeniedException ade) {
            System.out.println("Sorry: Can not read the balance of a foreign account!");
        }
        try {
            System.out.println("Get balance of home account via atm: ");
            System.out.println(cbATM.getBalance(acc2)+ " Euro");
        } catch (AccessDeniedException ade) {
            System.out.println("Sorry: Can not read the balance of a foreign account!");
        }
        System.out.println("---------------------------------------------------");
        SpecialConditions sc = new SpecialConditions();
        sc.activate();
        sc.participate(acc2);
 
        System.out.println("Crediting 2000 Euro to both accounts:");
        int acc1_before = acc1.getBalance();
        int acc2_before = acc2.getBalance();
        acc1.credit(2000); // -> balance += 2020
 
        System.out.println("Not participating account gets: " + (acc1.getBalance() - acc1_before)+" Euro.");
        acc2.credit(2000); // -> balance += 2000
        System.out.println("Special condition participating account gets: " + (acc2.getBalance() - acc2_before)+" Euro.");
 
    }
}

Back to the top