Uses of Class
org.inxar.hotswap.ProxyClass

Packages that use ProxyClass
org.inxar.hotswap This package provides the core interfaces and reference implementation. 
 

Uses of ProxyClass in org.inxar.hotswap
 

Methods in org.inxar.hotswap that return ProxyClass
 ProxyClass ProxyHotSwapEvent.getProxyClass()
          Returns the associated ProxyClass to which the source and classfiles are associated.
 ProxyClass Proxy.hotswap_getProxyClass()
          Returns the parent ProxyClass.
 ProxyClass ProxyClassSwapEvent.getProxyClass()
          Returns the associated ProxyClass to which the new and old classes are associated.
 ProxyClass ProxyClassLoader.loadJDK12(String className)
          JDK1.2 Factory method; Creates a new ProxyClass for the given className.
 ProxyClass ProxyClassLoader.load(String className, Class[] interfaces)
          JDK1.3 Factory method; Creates a new ProxyClass for the given className that will use the JDK1.3 dynamic proxy class mechanism.
 ProxyClass ProxyClassLoader.load(String className)
          JDK1.3 Factory method; Convenience method that uses the published list of interfaces on the Class object.
 ProxyClass ProxyClassLoader.remove(ProxyClass cls)
          Removes the given ProxyClass instance from this cache and returns the cached instance or null if no such ProxyClass exists in this cache.
 ProxyClass ProxyClassLoader.getJDK13(String className)
          Returns the ProxyClass having the given name or null if no such ProxyClass exists; if the given classname is NOT a JDK13 ProxyClass, a ProxyRuntimeException will be thrown.
 ProxyClass ProxyClassLoader.getJDK12(String className)
          Returns the ProxyClass having the given name or null if no such ProxyClass exists; if the given classname is a JDK13 ProxyClass, a ProxyRuntimeException will be thrown.
 

Methods in org.inxar.hotswap with parameters of type ProxyClass
abstract  ProxyCompileEvent ProxyCompiler.compile(ProxyClass cls)
          Compiles the class associated with the given ProxyClass.
 ProxyResource ProxyCompiler.getSourcefile(ProxyClass cls)
          Returns the sourcefile ProxyResource for this ProxyClass.
 ProxyResource ProxyCompiler.getClassfile(ProxyClass cls)
          Returns the classfile ProxyResource for this ProxyClass.
 int ProxyCompiler.getStatus(ProxyClass proxyClass)
          Returns the status of ProxyClass as one of the STATUS_XXX constants in this class.
 ProxyCompileEvent SystemCompiler.compile(ProxyClass cls)
           
 ProxyCompileEvent JavacCompiler.compile(ProxyClass cls)
           
 ProxyClass ProxyClassLoader.remove(ProxyClass cls)
          Removes the given ProxyClass instance from this cache and returns the cached instance or null if no such ProxyClass exists in this cache.
 

Constructors in org.inxar.hotswap with parameters of type ProxyClass
ProxyHotSwapEvent(ProxyClass source)
          Standard constructor originates from the given ProxyClass source.
ProxyClassSwapEvent(ProxyClass source, Class oldClass, Class newClass)
          Standard constructor originates from the given ProxyClass source and carries the given new and old Class instances.