Java Script Engine getVersionString(ScriptEngineFactory factory)

Here you can find the source of getVersionString(ScriptEngineFactory factory)

Description

get Version String

License

Apache License

Declaration

public static String getVersionString(ScriptEngineFactory factory) 

Method Source Code


//package com.java2s;
/*/*from w w w . j ava  2  s .  c o m*/
 * Copyright 2011 Leonid Maslov<leonidms@gmail.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.script.ScriptEngineFactory;

public class Main {
    public static String getVersionString(ScriptEngineFactory factory) {
        return factory.getLanguageVersion();
    }
}

Related

  1. getEngine(String engineName)
  2. getScriptEngine()
  3. getScriptEngine(final ClassLoader loader, final String... args)
  4. getScriptEngineManager()
  5. getStringOrExcept(ScriptEngine e, String vname)
  6. importClass(ScriptEngine e, Class pkg, Bindings... b)
  7. isJsEngineAvailable(String engineName, Logger logger)
  8. listGems(ScriptEngine jruby)
  9. listScriptEngines()