working on including external code

This commit is contained in:
benfry
2003-09-24 19:21:24 +00:00
parent b3b16a1fda
commit 3ffeea4fa0
4 changed files with 129 additions and 33 deletions

View File

@@ -28,12 +28,12 @@ import java.io.*;
public class PdeCompilerKjc extends PdeCompiler {
public PdeCompilerKjc(String buildPath, String className, PdeEditor editor) {
super(buildPath, className, editor);
public PdeCompilerKjc(String buildPath, String className,
File includeFolder, PdeEditor editor) {
super(buildPath, className, includeFolder, editor);
}
public boolean compileJava(PrintStream leechErr) {
System.setErr(leechErr); // redirect stderr to our leech filter
String args[] = new String[2];