Package org.puremvc.java.multicore.interfaces

Examples of org.puremvc.java.multicore.interfaces.IProxy


   *
   * @param proxy
   *            name of the <code>Proxy</code> instance to be removed.
   */
  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

Related Classes of org.puremvc.java.multicore.interfaces.IProxy

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.