Uses of Class
org.inxar.hotswap.ProxyCompiler

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

Uses of ProxyCompiler in org.inxar.hotswap
 

Subclasses of ProxyCompiler in org.inxar.hotswap
 class JavacCompiler
          Concrete ProxyCompiler implementation that interfaces with sun.tools.javac.Main (requires tools.jar in the classpath).
 class SystemCompiler
          Concrete ProxyCompiler implementation that executes a compilation command through Runtime.exec.
 

Methods in org.inxar.hotswap that return ProxyCompiler
 ProxyCompiler ProxyClass.getProxyCompiler()
          Returns the ProxyCompiler used by this class.
 ProxyCompiler ProxyClassLoader.getDefaultProxyCompiler()
          Returns the default ProxyCompiler instance.
 

Methods in org.inxar.hotswap with parameters of type ProxyCompiler
 void ProxyClass.setProxyCompiler(ProxyCompiler compiler)
          Sets the ProxyCompiler to be used by this class.
 void ProxyClassLoader.setDefaultProxyCompiler(ProxyCompiler compiler)
          Sets the default parent ProxyCompiler instance.
 

Constructors in org.inxar.hotswap with parameters of type ProxyCompiler
ProxyCompileEvent(ProxyCompiler source, String className, String cmd, String out, String err, int rc)
          Standard constructor originates from the given ProxyCompiler source and carries the command string that was executed, any standard output and any standard error, and the return code of the ProxyCompiler.compile method.