891011121314
public class CompilationFailureLogger implements CompilationListener { private ErrorPresenter presenter; public CompilationFailureLogger(){ this(new DefaultErrorPresenter()); }
17181920212223
private static final String DOLLAR_SIGN = "$"; public static final String CLASS_SUFFIX = ".class"; public static void compile(String src, String bin) throws IOException { compile(new DefaultErrorPresenter(), new File(src), new File(bin)); }