Save This Page
Home » openjdk-7 » java » lang » [javadoc | source]
java.lang
final class: VMCompiler [javadoc | source]
java.lang.Object
   java.lang.VMCompiler
This class is just a per-VM reflection of java.lang.Compiler. All methods are defined identically.
Method from java.lang.VMCompiler Summary:
command,   compileClass,   compileClasses,   disable,   enable
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.lang.VMCompiler Detail:
 public static Object command(Object arg) 
    This method examines the argument and performs an operation according to the compilers documentation. No specific operation is required.
 public static boolean compileClass(Class oneClass) 
    Compile the class named by oneClass.
 public static boolean compileClasses(String classNames) 
    Compile the classes whose name matches classNames.
 public static  void disable() 
    Calling Compiler.disable() will cause the compiler to be suspended; provided that a compiler even exists.
 public static  void enable() 
    Calling Compiler.enable() will cause the compiler to resume operation if it was previously disabled; provided that a compiler even exists.