/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang; import org.sablevm.annotations.ImplementedInVM; public final class Compiler extends Object { @ImplementedInVM native public static boolean compileClass(Class clazz); @ImplementedInVM native public static boolean compileClasses(String string); @ImplementedInVM native public static Object command(Object any); @ImplementedInVM native public static void enable(); @ImplementedInVM native public static void disable(); }