Recipe Name:
Trino
Recipe:
Hi Scott,nice post. One question: I am using the chart eninge inside an Eclipse RCP application ()To get the script class loaded, I added the following fragment:RunTimeContext rtc = new RunTimeContext();rtc.setScriptClassLoader(new IScriptClassLoader(){public Class loadClass(String className, ClassLoader parentLoader) throws ClassNotFoundException{ return getClass().getClassLoader().loadClass(className); }});The script class is otherwise not found, because the chart plug-in cannot load my class.I wonder if there is a simpler way to do this... - Andreas.