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/openmbean/CompositeDataView.java
/* * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management.openmbean; /** * <p>A Java class can implement this interface to indicate how it is * to be converted into a {@code CompositeData} by the MXBean framework.</p> * * <p>A typical way to use this class is to add extra items to the * {@code CompositeData} in addition to the ones that are declared in the * {@code CompositeType} supplied by the MXBean framework. To do this, * you must create another {@code CompositeType} that has all the same items, * plus your extra items.</p> * * <p>For example, suppose you have a class {@code Measure} that consists of * a String called {@code units} and a {@code value} that is either a * {@code long} or a {@code double}. It might look like this:</p> * * <pre> * public class Measure implements CompositeDataView { * private String units; * private Number value; // a Long or a Double * * public Measure(String units, Number value) { * this.units = units; * this.value = value; * } * * public static Measure from(CompositeData cd) { * return new Measure((String) cd.get("units"), * (Number) cd.get("value")); * } * * public String getUnits() { * return units; * } * * // Can't be called getValue(), because Number is not a valid type * // in an MXBean, so the implied "value" property would be rejected. * public Number _getValue() { * return value; * } * * public CompositeData toCompositeData(CompositeType ct) { * try { * {@code List<String> itemNames = new ArrayList<String>(ct.keySet());} * {@code List<String> itemDescriptions = new ArrayList<String>();} * {@code List<OpenType<?>> itemTypes = new ArrayList<OpenType<?>>();} * for (String item : itemNames) { * itemDescriptions.add(ct.getDescription(item)); * itemTypes.add(ct.getType(item)); * } * itemNames.add("value"); * itemDescriptions.add("long or double value of the measure"); * itemTypes.add((value instanceof Long) ? SimpleType.LONG : * SimpleType.DOUBLE); * CompositeType xct = * new CompositeType(ct.getTypeName(), * ct.getDescription(), * itemNames.toArray(new String[0]), * itemDescriptions.toArray(new String[0]), * itemTypes.toArray(new OpenType<?>[0])); * CompositeData cd = * new CompositeDataSupport(xct, * new String[] {"units", "value"}, * new Object[] {units, value}); * assert ct.isValue(cd); // check we've done it right * return cd; * } catch (Exception e) { * throw new RuntimeException(e); * } * } * } * </pre> * * <p>The {@code CompositeType} that will appear in the {@code openType} field * of the {@link javax.management.Descriptor Descriptor} for an attribute or * operation of this type will show only the {@code units} item, but the actual * {@code CompositeData} that is generated will have both {@code units} and * {@code value}.</p> * * @see javax.management.MXBean * * @since 1.6 */ public interface CompositeDataView { /** * <p>Return a {@code CompositeData} corresponding to the values in * this object. The returned value should usually be an instance of * {@link CompositeDataSupport}, or a class that serializes as a * {@code CompositeDataSupport} via a {@code writeReplace} method. * Otherwise, a remote client that receives the object might not be * able to reconstruct it. * * @param ct The expected {@code CompositeType} of the returned * value. If the returned value is {@code cd}, then * {@code cd.getCompositeType().equals(ct)} should be true. * Typically this will be because {@code cd} is a * {@link CompositeDataSupport} constructed with {@code ct} as its * {@code CompositeType}. * * @return the {@code CompositeData}. */ public CompositeData toCompositeData(CompositeType ct); }
⏎ javax/management/openmbean/CompositeDataView.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, 190974👍, 5💬
Popular Posts:
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
How to perform XML Schema validation with dom\Writer.java provided in the Apache Xerces package? You...
itextpdf.jar is a component in iText 5 Java library to provide core functionalities. iText Java libr...
JDK 11 jdk.jshell.jmod is the JMOD file for JDK 11 JShell tool, which can be invoked by the "jshell"...
How to download and install mysql-connector-j-8.0.31 .zip?Connector/J Java library is a JDBC Driver ...