Package org.puremvc.java.multicore.interfaces

Examples of org.puremvc.java.multicore.interfaces.IProxy.onRemove()


   */
  public IProxy removeProxy(String proxyName) {
    IProxy proxy = (IProxy) this.proxyMap.get(proxyName);
    if(proxy != null){
      this.proxyMap.remove(proxyName);
      proxy.onRemove();
    }
    return proxy;
  }

  /**
 
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.