Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.scripting.jmod - Scripting Module
JDK 11 java.scripting.jmod is the JMOD file for JDK 11 Scripting module.
JDK 11 Scripting module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.scripting.jmod.
JDK 11 Scripting module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Scripting module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.scripting.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/script/CompiledScript.java
/* * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.script; import java.util.Map; /** * Extended by classes that store results of compilations. State * might be stored in the form of Java classes, Java class files or scripting * language opcodes. The script may be executed repeatedly * without reparsing. * <br><br> * Each <code>CompiledScript</code> is associated with a <code>ScriptEngine</code> -- A call to an <code>eval</code> * method of the <code>CompiledScript</code> causes the execution of the script by the * <code>ScriptEngine</code>. Changes in the state of the <code>ScriptEngine</code> caused by execution * of the <code>CompiledScript</code> may visible during subsequent executions of scripts by the engine. * * @author Mike Grogan * @since 1.6 */ public abstract class CompiledScript { /** * Executes the program stored in this <code>CompiledScript</code> object. * * @param context A <code>ScriptContext</code> that is used in the same way as * the <code>ScriptContext</code> passed to the <code>eval</code> methods of * <code>ScriptEngine</code>. * * @return The value returned by the script execution, if any. Should return <code>null</code> * if no value is returned by the script execution. * * @throws ScriptException if an error occurs. * @throws NullPointerException if context is null. */ public abstract Object eval(ScriptContext context) throws ScriptException; /** * Executes the program stored in the <code>CompiledScript</code> object using * the supplied <code>Bindings</code> of attributes as the <code>ENGINE_SCOPE</code> of the * associated <code>ScriptEngine</code> during script execution. If bindings is null, * then the effect of calling this method is same as that of eval(getEngine().getContext()). * <p>. * The <code>GLOBAL_SCOPE</code> <code>Bindings</code>, <code>Reader</code> and <code>Writer</code> * associated with the default <code>ScriptContext</code> of the associated <code>ScriptEngine</code> are used. * * @param bindings The bindings of attributes used for the <code>ENGINE_SCOPE</code>. * * @return The return value from the script execution * * @throws ScriptException if an error occurs. */ public Object eval(Bindings bindings) throws ScriptException { ScriptContext ctxt = getEngine().getContext(); if (bindings != null) { SimpleScriptContext tempctxt = new SimpleScriptContext(ctxt.getReader(), ctxt.getWriter(), ctxt.getErrorWriter()); tempctxt.setBindings(bindings, ScriptContext.ENGINE_SCOPE); tempctxt.setBindings(ctxt.getBindings(ScriptContext.GLOBAL_SCOPE), ScriptContext.GLOBAL_SCOPE); ctxt = tempctxt; } return eval(ctxt); } /** * Executes the program stored in the <code>CompiledScript</code> object. The * default <code>ScriptContext</code> of the associated <code>ScriptEngine</code> is used. * The effect of calling this method is same as that of eval(getEngine().getContext()). * * @return The return value from the script execution * * @throws ScriptException if an error occurs. */ public Object eval() throws ScriptException { return eval(getEngine().getContext()); } /** * Returns the <code>ScriptEngine</code> whose <code>compile</code> method created this <code>CompiledScript</code>. * The <code>CompiledScript</code> will execute in this engine. * * @return The <code>ScriptEngine</code> that created this <code>CompiledScript</code> */ public abstract ScriptEngine getEngine(); }
⏎ javax/script/CompiledScript.java
Or download all of them as a single archive file:
File name: java.scripting-11.0.1-src.zip File size: 30999 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.se.jmod - SE Module
2020-09-30, 7776👍, 0💬
Popular Posts:
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto modu...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...