Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
Collections:
Other Resources:
JDK 11 java.base.jmod - Base Module
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module.
JDK 11 Base module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.base.jmod.
JDK 11 Base module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Base module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/lang/NamedPackage.java
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.lang;
import java.lang.module.Configuration;
import java.lang.module.ModuleReference;
import java.net.URI;
/**
* A NamedPackage represents a package by name in a specific module.
*
* A class loader will automatically create NamedPackage for each
* package when a class is defined. Package object is lazily
* defined until Class::getPackage, Package::getPackage(s), or
* ClassLoader::getDefinedPackage(s) method is called.
*
* NamedPackage allows ClassLoader to keep track of the runtime
* packages with minimal footprint and avoid constructing Package
* object.
*/
class NamedPackage {
private final String name;
private final Module module;
NamedPackage(String pn, Module module) {
if (pn.isEmpty() && module.isNamed()) {
throw new InternalError("unnamed package in " + module);
}
this.name = pn.intern();
this.module = module;
}
/**
* Returns the name of this package.
*/
String packageName() {
return name;
}
/**
* Returns the module of this named package.
*/
Module module() {
return module;
}
/**
* Returns the location of the module if this named package is in
* a named module; otherwise, returns null.
*/
URI location() {
if (module.isNamed() && module.getLayer() != null) {
Configuration cf = module.getLayer().configuration();
ModuleReference mref
= cf.findModule(module.getName()).get().reference();
return mref.location().orElse(null);
}
return null;
}
/**
* Creates a Package object of the given name and module.
*/
static Package toPackage(String name, Module module) {
return new Package(name, module);
}
}
⏎ java/lang/NamedPackage.java
Or download all of them as a single archive file:
File name: java.base-11.0.1-src.zip File size: 8740354 bytes Release date: 2018-11-04 Download
2020-05-29, ≈563🔥, 0💬
Popular Posts:
JUnit Source Code Files are provided in the source package file, junit-4.13.2-sources.jar .You can b...
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
JDK 11 jrt-fs.jar is the JAR file for JDK 11 JRT-FS (Java RunTime - File System) defined in the "jdk...