Package Banking

Examples of Banking.Account.balance()


        String accNum = "0234.234432.50L";
        Account account = AccountHelper.narrow(namingCtx.resolve_str(accNum));
        System.out.println("Obtained a handle on server object: " + account);
       
        account.deposit(100);
        System.out.println("yeeeee: " + account.balance());
  }
       
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.