Domanda

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"

È stato utile?

Soluzione

GroovyScriptEngineImpl implements the Compilable, Invocable, and ScriptEngine interfaces.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top