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/ClassAttributeValueExp.java
/* * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management; import java.security.AccessController; import com.sun.jmx.mbeanserver.GetPropertyAction; /** * This class represents the name of the Java implementation class of * the MBean. It is used for performing queries based on the class of * the MBean. * @serial include * * <p>The <b>serialVersionUID</b> of this class is <code>-1081892073854801359L</code>. * * @since 1.5 */ @SuppressWarnings("serial") // serialVersionUID is not constant class ClassAttributeValueExp extends AttributeValueExp { // Serialization compatibility stuff: // Two serial forms are supported in this class. The selected form depends // on system property "jmx.serial.form": // - "1.0" for JMX 1.0 // - any other value for JMX 1.1 and higher // // Serial version for old serial form private static final long oldSerialVersionUID = -2212731951078526753L; // // Serial version for new serial form private static final long newSerialVersionUID = -1081892073854801359L; private static final long serialVersionUID; static { boolean compat = false; try { GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); String form = AccessController.doPrivileged(act); compat = (form != null && form.equals("1.0")); } catch (Exception e) { // OK: exception means no compat with 1.0, too bad } if (compat) serialVersionUID = oldSerialVersionUID; else serialVersionUID = newSerialVersionUID; } /** * @serial The name of the attribute * * <p>The <b>serialVersionUID</b> of this class is <code>-1081892073854801359L</code>. */ private String attr; /** * Basic Constructor. */ public ClassAttributeValueExp() { /* Compatibility: we have an attr field that we must hold on to for serial compatibility, even though our parent has one too. */ super("Class"); attr = "Class"; } /** * Applies the ClassAttributeValueExp on an MBean. Returns the name of * the Java implementation class of the MBean. * * @param name The name of the MBean on which the ClassAttributeValueExp will be applied. * * @return The ValueExp. * * @exception BadAttributeValueExpException * @exception InvalidApplicationException */ public ValueExp apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException, BadAttributeValueExpException, InvalidApplicationException { // getAttribute(name); Object result = getValue(name); if (result instanceof String) { return new StringValueExp((String)result); } else { throw new BadAttributeValueExpException(result); } } /** * Returns the string "Class" representing its value */ public String toString() { return attr; } protected Object getValue(ObjectName name) { try { // Get the class of the object MBeanServer server = QueryEval.getMBeanServer(); return server.getObjectInstance(name).getClassName(); } catch (Exception re) { return null; /* In principle the MBean does exist because otherwise we wouldn't be evaluating the query on it. But it could potentially have disappeared in between the time we discovered it and the time the query is evaluated. Also, the exception could be a SecurityException. Returning null from here will cause BadAttributeValueExpException, which will in turn cause this MBean to be omitted from the query result. */ } } }
⏎ javax/management/ClassAttributeValueExp.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
2023-02-07, 190951👍, 5💬
Popular Posts:
What Is poi-scratchpad-5.2.3.jar ?poi-scratchpad-5.2.3.jar is one of the JAR files for Apache POI 5....
JDK 11 jdk.crypto.mscapi.jmod is the JMOD file for JDK 11 Crypto MSCAPI module. JDK 11 Crypto MSCAPI...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
Apache Log4j Core Implementation provides the functional components of the logging system. Users are...
What Is HttpComponents commons-httpclient-3.1.j ar?HttpComponents commons-httpclient-3.1.j aris the ...