Package core

Examples of core.StubBank


import core.StubBank;

public class ProxyDemo {

  public static void main(String[] args) {
    StubBank target = new StubBank();
    LoggingAdvice advice = new LoggingAdvice();
    ProxyFactory pf = new ProxyFactory(target);
    pf.addAdvice(advice);
    Bank bank = (Bank) pf.getProxy();
    bank.debit("abc", 100);
View Full Code Here

TOP

Related Classes of core.StubBank

Copyright © 2018 www.massapicom. 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.