[tcljava-dev] tcl interpr from eclipse plug-in
Brought to you by:
mdejong
|
From: ivan l. <iva...@gm...> - 2007-08-09 10:43:20
|
Hello!
Is it possible to work with Tcl Interpr within a plugin? When I make a
simple java project in Eclipse that contains something like:
Interpr i = new Interp();
try {
interp.eval("puts hello!");
} catch (TclException ex) {
// Handle Tcl exceptions here ...
}
everything works just fine but when I try to do the same thing from my
plug-in, tcl/lang/TclException occurs.
Can anyone tell me why?
Ivan
|