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.shell.jmod - Scripting Nashorn Shell Module
JDK 11 jdk.scripting.nashorn.shell.jmod is the JMOD file for JDK 11 Scripting Nashorn Shell module.
JDK 11 Scripting Nashorn Shell module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.scripting.nashorn.shell.jmod.
JDK 11 Scripting Nashorn Shell module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Scripting Nashorn Shell module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.scripting.nashorn.shell.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/nashorn/tools/jjs/JavacPackagesHelper.java
/* * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.nashorn.tools.jjs; import java.io.IOException; import java.io.File; import java.util.Collections; import java.util.EnumSet; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.stream.Collectors; import java.util.stream.Stream; import javax.tools.JavaCompiler; import javax.tools.JavaFileManager.Location; import javax.tools.JavaFileObject; import javax.tools.StandardJavaFileManager; import javax.tools.StandardLocation; import javax.tools.ToolProvider; import jdk.nashorn.internal.runtime.Context; /** * A javac package helper that uses javac to complete package names. */ final class JavacPackagesHelper extends PackagesHelper { // JavaCompiler may be null on certain platforms (eg. JRE) private static final JavaCompiler compiler; static { // Use javac only if security manager is not around! compiler = System.getSecurityManager() == null? ToolProvider.getSystemJavaCompiler() : null; } /** * Is this class available? * * @return true if javac is available */ static boolean isAvailable() { return compiler != null; } private final boolean modulePathSet; private final StandardJavaFileManager fm; private final Set<JavaFileObject.Kind> fileKinds; /** * Construct a new JavacPackagesHelper. * * @param context the current Nashorn Context */ JavacPackagesHelper(final Context context) throws IOException { super(context); final String modulePath = context.getEnv()._module_path; this.modulePathSet = modulePath != null && !modulePath.isEmpty(); if (isAvailable()) { final String classPath = context.getEnv()._classpath; fm = compiler.getStandardFileManager(null, null, null); fileKinds = EnumSet.of(JavaFileObject.Kind.CLASS); if (this.modulePathSet) { fm.setLocation(StandardLocation.MODULE_PATH, getFiles(modulePath)); } if (classPath != null && !classPath.isEmpty()) { fm.setLocation(StandardLocation.CLASS_PATH, getFiles(classPath)); } else { // no classpath set. Make sure that it is empty and not any default like "." fm.setLocation(StandardLocation.CLASS_PATH, Collections.<File>emptyList()); } } else { // javac is not available - caller should have checked! throw new IllegalStateException("JavacPackagesHelper is not available!"); } } @Override void close() throws IOException { if (fm != null) { fm.close(); } } @Override Set<String> listPackage(final String pkg) throws IOException { final Set<String> props = new HashSet<>(); listPackage(StandardLocation.PLATFORM_CLASS_PATH, pkg, props); if (this.modulePathSet) { for (Set<Location> locs : fm.listLocationsForModules(StandardLocation.MODULE_PATH)) { for (Location loc : locs) { listPackage(loc, pkg, props); } } } listPackage(StandardLocation.CLASS_PATH, pkg, props); return props; } private void listPackage(final Location loc, final String pkg, final Set<String> props) throws IOException { for (JavaFileObject file : fm.list(loc, pkg, fileKinds, true)) { final String binaryName = fm.inferBinaryName(loc, file); // does not start with the given package prefix if (!binaryName.startsWith(pkg + ".")) { continue; } final int nextDot = binaryName.indexOf('.', pkg.length() + 1); final int start = pkg.length() + 1; if (nextDot != -1) { // subpackage - eg. "regex" for "java.util" final String pkgName = binaryName.substring(start, nextDot); if (isPackageAccessible(binaryName.substring(0, nextDot))) { props.add(binaryName.substring(start, nextDot)); } } else { // class - filter out nested, inner, anonymous, local classes. // Dynalink supported public nested classes as properties of // StaticClass object anyway. We don't want to expose those // "$" internal names as properties of package object. final String clsName = binaryName.substring(start); if (clsName.indexOf('$') == -1 && isClassAccessible(binaryName)) { props.add(clsName); } } } } // return list of File objects for the given class path private static List<File> getFiles(final String classPath) { return Stream.of(classPath.split(File.pathSeparator)) .map(File::new) .collect(Collectors.toList()); } }
⏎ jdk/nashorn/tools/jjs/JavacPackagesHelper.java
Or download all of them as a single archive file:
File name: jdk.scripting.nashorn.shell-11.0.1-src.zip File size: 22002 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.sctp.jmod - SCTP Module
⇐ JDK 11 jdk.scripting.nashorn.jmod - Scripting Nashorn Module
2019-12-02, 5939👍, 0💬
Popular Posts:
MP3SPI is a Java Service Provider Interface that adds MP3 (MPEG 1/2/2.5 Layer 1/2/3) audio format su...
How to download and install mysql-connector-j-8.0.31 .zip?Connector/J Java library is a JDBC Driver ...
SLF4J API is a simple API that allows to plug in any desired logging library at deployment time. Her...
itextpdf.jar is a component in iText 5 Java library to provide core functionalities. iText Java libr...
Snappy-Java is a Java port of the "snappy", a fast C++ compresser/decompresser developed by Google. ...