| [news.eclipse.platform] Accessing code written in runtime workbench |
|
Hi,
I am writing a plugin which creates
a java file and compiles it.
Is there any way for my plugin code
to access the java class which is created at runtime?
e.g. In the runtime workbench, if a
user clicks a button, a class is created and compiled as follows -
public class testCls()
{
public static
String returnStr() {
return "Client String";
}
}
I want to code using the testCls
and invoke the method returnStr in my main pluglet code. Is this
possible?
Thanks
Praveen.
|