API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.script. ScriptEngineFactory View Source
Author(s)
Since
1.6
Version
Serial
Hierarchy
 ScriptEngineFactory
Subinterfaces
Description
public interface ScriptEngineFactory
  ScriptEngineFactory is used to describe and instantiate ScriptEngines.
See also:   
Methods
Hide/Show inherited methods
public String getEngineName ()
  Returns the full name of the ScriptEngine.
public String getEngineVersion ()
  Returns the version of the ScriptEngine.
public List<String> getExtensions ()
  Returns an immutable list of filename extensions, which generally identify scripts written in the language supported by this ScriptEngine.
public String getLanguageName ()
  Returns the name of the scripting langauge supported by this ScriptEngine.
public String getLanguageVersion ()
  Returns the version of the scripting language supported by this ScriptEngine.
public String getMethodCallSyntax (String obj, String m, String args)
  Returns a String which can be used to invoke a method of a Java object using the syntax of the supported scripting language.
public List<String> getMimeTypes ()
  Returns an immutable list of mimetypes, associated with scripts that can be executed by the engine.
public List<String> getNames ()
  Returns an immutable list of short names for the ScriptEngine, which may be used to identify the ScriptEngine by the ScriptEngineManager.
public String getOutputStatement (String toDisplay)
  Returns a String that can be used as a statement to display the specified String using the syntax of the supported scripting language.
public Object getParameter (String key)
  Returns the value of an attribute whose meaning may be implementation-specific.
public String getProgram (String statements)
  Returns A valid scripting language executable progam with given statements.
public ScriptEngine getScriptEngine ()
  Returns an instance of the ScriptEngine associated with this ScriptEngineFactory.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar