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.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/reflect/ReflectAccess.java
/* * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.lang.reflect; import jdk.internal.reflect.MethodAccessor; import jdk.internal.reflect.ConstructorAccessor; /** Package-private class implementing the sun.reflect.LangReflectAccess interface, allowing the java.lang package to instantiate objects in this package. */ class ReflectAccess implements jdk.internal.reflect.LangReflectAccess { public Field newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) { return new Field(declaringClass, name, type, modifiers, slot, signature, annotations); } public Method newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) { return new Method(declaringClass, name, parameterTypes, returnType, checkedExceptions, modifiers, slot, signature, annotations, parameterAnnotations, annotationDefault); } public <T> Constructor<T> newConstructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) { return new Constructor<>(declaringClass, parameterTypes, checkedExceptions, modifiers, slot, signature, annotations, parameterAnnotations); } public MethodAccessor getMethodAccessor(Method m) { return m.getMethodAccessor(); } public void setMethodAccessor(Method m, MethodAccessor accessor) { m.setMethodAccessor(accessor); } public ConstructorAccessor getConstructorAccessor(Constructor<?> c) { return c.getConstructorAccessor(); } public void setConstructorAccessor(Constructor<?> c, ConstructorAccessor accessor) { c.setConstructorAccessor(accessor); } public int getConstructorSlot(Constructor<?> c) { return c.getSlot(); } public String getConstructorSignature(Constructor<?> c) { return c.getSignature(); } public byte[] getConstructorAnnotations(Constructor<?> c) { return c.getRawAnnotations(); } public byte[] getConstructorParameterAnnotations(Constructor<?> c) { return c.getRawParameterAnnotations(); } public byte[] getExecutableTypeAnnotationBytes(Executable ex) { return ex.getTypeAnnotationBytes(); } public Class<?>[] getExecutableSharedParameterTypes(Executable ex) { return ex.getSharedParameterTypes(); } // // Copying routines, needed to quickly fabricate new Field, // Method, and Constructor objects from templates // public Method copyMethod(Method arg) { return arg.copy(); } public Method leafCopyMethod(Method arg) { return arg.leafCopy(); } public Field copyField(Field arg) { return arg.copy(); } public <T> Constructor<T> copyConstructor(Constructor<T> arg) { return arg.copy(); } @SuppressWarnings("unchecked") public <T extends AccessibleObject> T getRoot(T obj) { return (T) obj.getRoot(); } }
⏎ java/lang/reflect/ReflectAccess.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, 246292👍, 0💬
Popular Posts:
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
JDK 11 jdk.compiler.jmod is the JMOD file for JDK 11 Compiler tool, which can be invoked by the "jav...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
How to download and install ojdbc11.jar for Oracle 21c? ojdbc11.jar for Oracle 21c is a Java JDBC Dr...