mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01: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();
|
|
}
|