in groovy while getting the ScriptEngine using java6 feature, for groovy it gives me instance "GroovyScriptEngineImpl" which a type of class not an interface, is there any other way to get the interface ?

ScriptEngineManager  factory = new ScriptEngineManager();
ScriptEngine engine = factory.getEngineByName("groovy");
assert engine instanceof GroovyScriptEngineImpl

is there any interface available instaed of using "GroovyScriptEngineImpl"

有帮助吗?

解决方案

GroovyScriptEngineImpl implements the Compilable, Invocable, and ScriptEngine interfaces.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top