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 jdk.scripting.nashorn.jmod - Scripting Nashorn Module
JDK 11 jdk.scripting.nashorn.jmod is the JMOD file for JDK 11 Scripting Nashorn module.
JDK 11 Scripting Nashorn module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.scripting.nashorn.jmod.
JDK 11 Scripting Nashorn module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Scripting Nashorn module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.scripting.nashorn.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/nashorn/internal/runtime/DefaultPropertyAccess.java
/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.nashorn.internal.runtime; /** * If your ScriptObject or similar PropertyAccess implementation only provides the most * generic getters and setters and does nothing fancy with other, more primitive, types, * then it is convenient to inherit this class and just fill out the methods left * abstract */ public abstract class DefaultPropertyAccess implements PropertyAccess { @Override public int getInt(final Object key, final int programPoint) { return JSType.toInt32(get(key)); } @Override public int getInt(final double key, final int programPoint) { return getInt(JSType.toObject(key), programPoint); } @Override public int getInt(final int key, final int programPoint) { return getInt(JSType.toObject(key), programPoint); } @Override public double getDouble(final Object key, final int programPoint) { return JSType.toNumber(get(key)); } @Override public double getDouble(final double key, final int programPoint) { return getDouble(JSType.toObject(key), programPoint); } @Override public double getDouble(final int key, final int programPoint) { return getDouble(JSType.toObject(key), programPoint); } @Override public abstract Object get(Object key); @Override public Object get(final double key) { return get(JSType.toObject(key)); } @Override public Object get(final int key) { return get(JSType.toObject(key)); } @Override public void set(final double key, final int value, final int flags) { set(JSType.toObject(key), JSType.toObject(value), flags); } @Override public void set(final double key, final double value, final int flags) { set(JSType.toObject(key), JSType.toObject(value), flags); } @Override public void set(final double key, final Object value, final int flags) { set(JSType.toObject(key), JSType.toObject(value), flags); } @Override public void set(final int key, final int value, final int flags) { set(JSType.toObject(key), JSType.toObject(value), flags); } @Override public void set(final int key, final double value, final int flags) { set(JSType.toObject(key), JSType.toObject(value), flags); } @Override public void set(final int key, final Object value, final int flags) { set(JSType.toObject(key), value, flags); } @Override public void set(final Object key, final int value, final int flags) { set(key, JSType.toObject(value), flags); } @Override public void set(final Object key, final double value, final int flags) { set(key, JSType.toObject(value), flags); } @Override public abstract void set(Object key, Object value, int flags); @Override public abstract boolean has(Object key); @Override public boolean has(final int key) { return has(JSType.toObject(key)); } @Override public boolean has(final double key) { return has(JSType.toObject(key)); } @Override public boolean hasOwnProperty(final int key) { return hasOwnProperty(JSType.toObject(key)); } @Override public boolean hasOwnProperty(final double key) { return hasOwnProperty(JSType.toObject(key)); } @Override public abstract boolean hasOwnProperty(Object key); @Override public boolean delete(final int key, final boolean strict) { return delete(JSType.toObject(key), strict); } @Override public boolean delete(final double key, final boolean strict) { return delete(JSType.toObject(key), strict); } }
⏎ jdk/nashorn/internal/runtime/DefaultPropertyAccess.java
Or download all of them as a single archive file:
File name: jdk.scripting.nashorn-11.0.1-src.zip File size: 1390965 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.scripting.nashorn.shell.jmod - Scripting Nashorn Shell Module
2020-04-25, 83031👍, 0💬
Popular Posts:
What Is mail.jar of JavaMail 1.4? I got the JAR file from javamail-1_4.zip. mail.jar in javamail-1_4...
maven-compat-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Compact module. The JAR file name may ...
What is ojdbc.jar - JDBC Driver for Oracle? ojdbc.jar is a JDBC driver from Oracle that provides dat...
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...
SLF4J API is a simple API that allows to plug in any desired logging library at deployment time. Her...