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:
JRE 8 rt.jar - javax.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime environment included in JDK 8. JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the javax.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ javax/management/loading/ClassLoaderRepository.java
/* * Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management.loading; import javax.management.MBeanServer; // for Javadoc /** * <p>Instances of this interface are used to keep the list of ClassLoaders * registered in an MBean Server. * They provide the necessary methods to load classes using the registered * ClassLoaders.</p> * * <p>The first ClassLoader in a <code>ClassLoaderRepository</code> is * always the MBean Server's own ClassLoader.</p> * * <p>When an MBean is registered in an MBean Server, if it is of a * subclass of {@link java.lang.ClassLoader} and if it does not * implement the interface {@link PrivateClassLoader}, it is added to * the end of the MBean Server's <code>ClassLoaderRepository</code>. * If it is subsequently unregistered from the MBean Server, it is * removed from the <code>ClassLoaderRepository</code>.</p> * * <p>The order of MBeans in the <code>ClassLoaderRepository</code> is * significant. For any two MBeans <em>X</em> and <em>Y</em> in the * <code>ClassLoaderRepository</code>, <em>X</em> must appear before * <em>Y</em> if the registration of <em>X</em> was completed before * the registration of <em>Y</em> started. If <em>X</em> and * <em>Y</em> were registered concurrently, their order is * indeterminate. The registration of an MBean corresponds to the * call to {@link MBeanServer#registerMBean} or one of the {@link * MBeanServer}<code>.createMBean</code> methods.</p> * * @see javax.management.MBeanServerFactory * * @since 1.5 */ public interface ClassLoaderRepository { /** * <p>Load the given class name through the list of class loaders. * Each ClassLoader in turn from the ClassLoaderRepository is * asked to load the class via its {@link * ClassLoader#loadClass(String)} method. If it successfully * returns a {@link Class} object, that is the result of this * method. If it throws a {@link ClassNotFoundException}, the * search continues with the next ClassLoader. If it throws * another exception, the exception is propagated from this * method. If the end of the list is reached, a {@link * ClassNotFoundException} is thrown.</p> * * @param className The name of the class to be loaded. * * @return the loaded class. * * @exception ClassNotFoundException The specified class could not be * found. */ public Class<?> loadClass(String className) throws ClassNotFoundException; /** * <p>Load the given class name through the list of class loaders, * excluding the given one. Each ClassLoader in turn from the * ClassLoaderRepository, except <code>exclude</code>, is asked to * load the class via its {@link ClassLoader#loadClass(String)} * method. If it successfully returns a {@link Class} object, * that is the result of this method. If it throws a {@link * ClassNotFoundException}, the search continues with the next * ClassLoader. If it throws another exception, the exception is * propagated from this method. If the end of the list is * reached, a {@link ClassNotFoundException} is thrown.</p> * * <p>Be aware that if a ClassLoader in the ClassLoaderRepository * calls this method from its {@link ClassLoader#loadClass(String) * loadClass} method, it exposes itself to a deadlock if another * ClassLoader in the ClassLoaderRepository does the same thing at * the same time. The {@link #loadClassBefore} method is * recommended to avoid the risk of deadlock.</p> * * @param className The name of the class to be loaded. * @param exclude The class loader to be excluded. May be null, * in which case this method is equivalent to {@link #loadClass * loadClass(className)}. * * @return the loaded class. * * @exception ClassNotFoundException The specified class could not * be found. */ public Class<?> loadClassWithout(ClassLoader exclude, String className) throws ClassNotFoundException; /** * <p>Load the given class name through the list of class loaders, * stopping at the given one. Each ClassLoader in turn from the * ClassLoaderRepository is asked to load the class via its {@link * ClassLoader#loadClass(String)} method. If it successfully * returns a {@link Class} object, that is the result of this * method. If it throws a {@link ClassNotFoundException}, the * search continues with the next ClassLoader. If it throws * another exception, the exception is propagated from this * method. If the search reaches <code>stop</code> or the end of * the list, a {@link ClassNotFoundException} is thrown.</p> * * <p>Typically this method is called from the {@link * ClassLoader#loadClass(String) loadClass} method of * <code>stop</code>, to consult loaders that appear before it * in the <code>ClassLoaderRepository</code>. By stopping the * search as soon as <code>stop</code> is reached, a potential * deadlock with concurrent class loading is avoided.</p> * * @param className The name of the class to be loaded. * @param stop The class loader at which to stop. May be null, in * which case this method is equivalent to {@link #loadClass(String) * loadClass(className)}. * * @return the loaded class. * * @exception ClassNotFoundException The specified class could not * be found. * */ public Class<?> loadClassBefore(ClassLoader stop, String className) throws ClassNotFoundException; }
⏎ javax/management/loading/ClassLoaderRepository.java
Or download all of them as a single archive file:
File name: jre-rt-javax-1.8.0_191-src.zip File size: 5381005 bytes Release date: 2018-10-28 Download
⇒ JRE 8 rt.jar - org.* Package Source Code
2024-07-16, 255714👍, 7💬
Popular Posts:
Where to find answers to frequently asked questions on Downloading and Installing Connector/J - JDBC...
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with ...
How to download and install ojdbc11.jar for Oracle 21c? ojdbc11.jar for Oracle 21c is a Java JDBC Dr...
JDK 11 java.security.jgss.jmod is the JMOD file for JDK 11 Security JGSS (Java Generic Security Serv...