mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +02:00
12 lines
267 B
Java
Generated
12 lines
267 B
Java
Generated
package javax.script;
|
|
|
|
public interface ScriptEngineFactory {
|
|
public String getEngineName();
|
|
|
|
public String getMethodCallSyntax(String obj, String m, String... args);
|
|
|
|
public String getProgram(String... statements);
|
|
|
|
ScriptEngine getScriptEngine();
|
|
}
|