I'm working off of this article as a guide to
embedding jacl.
http://web.archive.org/web/20031203193300/http://www-cs-students.stanford.edu/~jwu/Using_Tcl_in_Java.html
it looks like the following code no longer applies, as
java doesn't find the references even with jacl.jar
and tcljava.jar on the classpath.
if (code == TCL.RETURN) {
code = interp.updateReturnInfo();
if (code == TCL.OK) {
break check_code;
}
}
TCL.OK is not found (or not visible), and interp does
not have a method named updateReturnInfo() (or at
least is not visible)
does anyone know what the updated form of this is?
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|