Uses of Interface
org.puremvc.java.interfaces.IProxy

Packages that use IProxy
org.puremvc.java.core.model   
org.puremvc.java.interfaces   
org.puremvc.java.patterns.facade   
org.puremvc.java.patterns.proxy   
 

Uses of IProxy in org.puremvc.java.core.model
 

Methods in org.puremvc.java.core.model that return IProxy
 IProxy Model.removeProxy(java.lang.String proxy)
          Remove an Proxy from the Model.
 IProxy Model.retrieveProxy(java.lang.String proxy)
          Retrieve an Proxy from the Model.
 

Methods in org.puremvc.java.core.model with parameters of type IProxy
 void Model.registerProxy(IProxy proxy)
          Register an Proxy with the Model.
 

Uses of IProxy in org.puremvc.java.interfaces
 

Methods in org.puremvc.java.interfaces that return IProxy
 IProxy IModel.removeProxy(java.lang.String proxy)
          Remove an IProxy instance from the Model.
 IProxy IFacade.removeProxy(java.lang.String proxyName)
          Remove an IProxy instance from the Model by name.
 IProxy IModel.retrieveProxy(java.lang.String proxy)
          Retrieve an IProxy instance from the Model.
 IProxy IFacade.retrieveProxy(java.lang.String proxyName)
          Retrieve a IProxy from the Model by name.
 

Methods in org.puremvc.java.interfaces with parameters of type IProxy
 void IModel.registerProxy(IProxy proxy)
          Register an IProxy instance with the Model.
 void IFacade.registerProxy(IProxy proxy)
          Register an IProxy with the Model by name.
 

Uses of IProxy in org.puremvc.java.patterns.facade
 

Methods in org.puremvc.java.patterns.facade that return IProxy
 IProxy Facade.removeProxy(java.lang.String proxyName)
          Remove an IProxy from the Model by name.
 IProxy Facade.retrieveProxy(java.lang.String proxyName)
          Retrieve an IProxy from the Model by name.
 

Methods in org.puremvc.java.patterns.facade with parameters of type IProxy
 void Facade.registerProxy(IProxy proxy)
          Register an IProxy with the Model by name.
 

Uses of IProxy in org.puremvc.java.patterns.proxy
 

Classes in org.puremvc.java.patterns.proxy that implement IProxy
 class Proxy
          A base IProxy implementation.