Interpreter i = new Interpreter(); // Construct an interpreter
BshClassManager bsh = i.getClassManager();
if (!bsh.classExists(classname)) {
i.source(url.getFile());
}
ti = bsh.classForName(classname);
} catch (IOException ex) {
System.err.println("File missing:" + ex);
return null;
} catch (Exception ex) {
System.err.println("Problem:" + ex);