public abstract class

ScriptEngineFactoryBase

extends Object
implements ScriptEngineFactory
java.lang.Object
   ↳ com.sun.script.util.ScriptEngineFactoryBase
Known Direct Subclasses

Summary

Public Constructors
ScriptEngineFactoryBase()
Public Methods
String getEngineName()
Returns the full name of the ScriptEngine.
String getEngineVersion()
Returns the version of the ScriptEngine.
String getLanguageName()
Returns the name of the scripting langauge supported by this ScriptEngine.
String getLanguageVersion()
Returns the version of the scripting language supported by this ScriptEngine.
String getName()
[Expand]
Inherited Methods
From class java.lang.Object
From interface javax.script.ScriptEngineFactory

Public Constructors

public ScriptEngineFactoryBase ()

Public Methods

public String getEngineName ()

Returns the full name of the ScriptEngine. For instance an implementation based on the Mozilla Rhino Javascript engine might return Rhino Mozilla Javascript Engine.

Returns
  • The name of the engine implementation.

public String getEngineVersion ()

Returns the version of the ScriptEngine.

Returns
  • The ScriptEngine implementation version.

public String getLanguageName ()

Returns the name of the scripting langauge supported by this ScriptEngine.

Returns
  • The name of the supported language.

public String getLanguageVersion ()

Returns the version of the scripting language supported by this ScriptEngine.

Returns
  • The version of the supported language.

public String getName ()