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:
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/MBeanNotificationInfo.java
/*
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.management;
import java.io.IOException;
import java.io.InvalidObjectException;
import java.io.ObjectInputStream;
import java.util.Arrays;
import java.util.Objects;
/**
* <p>The <CODE>MBeanNotificationInfo</CODE> class is used to describe the
* characteristics of the different notification instances
* emitted by an MBean, for a given Java class of notification.
* If an MBean emits notifications that can be instances of different Java classes,
* then the metadata for that MBean should provide an <CODE>MBeanNotificationInfo</CODE>
* object for each of these notification Java classes.</p>
*
* <p>Instances of this class are immutable. Subclasses may be
* mutable but this is not recommended.</p>
*
* <p>This class extends <CODE>javax.management.MBeanFeatureInfo</CODE>
* and thus provides <CODE>name</CODE> and <CODE>description</CODE> fields.
* The <CODE>name</CODE> field should be the fully qualified Java class name of
* the notification objects described by this class.</p>
*
* <p>The <CODE>getNotifTypes</CODE> method returns an array of
* strings containing the notification types that the MBean may
* emit. The notification type is a dot-notation string which
* describes what the emitted notification is about, not the Java
* class of the notification. A single generic notification class can
* be used to send notifications of several types. All of these types
* are returned in the string array result of the
* <CODE>getNotifTypes</CODE> method.
*
* @since 1.5
*/
public class MBeanNotificationInfo extends MBeanFeatureInfo implements Cloneable {
/* Serial version */
static final long serialVersionUID = -3888371564530107064L;
private static final String[] NO_TYPES = new String[0];
static final MBeanNotificationInfo[] NO_NOTIFICATIONS =
new MBeanNotificationInfo[0];
/**
* @serial The different types of the notification.
*/
private String[] types;
/** @see MBeanInfo#arrayGettersSafe */
private final transient boolean arrayGettersSafe;
/**
* Constructs an <CODE>MBeanNotificationInfo</CODE> object.
*
* @param notifTypes The array of strings (in dot notation)
* containing the notification types that the MBean may emit.
* This may be null with the same effect as a zero-length array.
* @param name The fully qualified Java class name of the
* described notifications.
* @param description A human readable description of the data.
*/
public MBeanNotificationInfo(String[] notifTypes,
String name,
String description) {
this(notifTypes, name, description, null);
}
/**
* Constructs an <CODE>MBeanNotificationInfo</CODE> object.
*
* @param notifTypes The array of strings (in dot notation)
* containing the notification types that the MBean may emit.
* This may be null with the same effect as a zero-length array.
* @param name The fully qualified Java class name of the
* described notifications.
* @param description A human readable description of the data.
* @param descriptor The descriptor for the notifications. This may be null
* which is equivalent to an empty descriptor.
*
* @since 1.6
*/
public MBeanNotificationInfo(String[] notifTypes,
String name,
String description,
Descriptor descriptor) {
super(name, description, descriptor);
/* We do not validate the notifTypes, since the spec just says
they are dot-separated, not that they must look like Java
classes. E.g. the spec doesn't forbid "sun.prob.25" as a
notifType, though it doesn't explicitly allow it
either. */
this.types = (notifTypes != null && notifTypes.length > 0) ?
notifTypes.clone() : NO_TYPES;
this.arrayGettersSafe =
MBeanInfo.arrayGettersSafe(this.getClass(),
MBeanNotificationInfo.class);
}
/**
* Returns a shallow clone of this instance.
* The clone is obtained by simply calling <tt>super.clone()</tt>,
* thus calling the default native shallow cloning mechanism
* implemented by <tt>Object.clone()</tt>.
* No deeper cloning of any internal field is made.
*/
public Object clone () {
try {
return super.clone() ;
} catch (CloneNotSupportedException e) {
// should not happen as this class is cloneable
return null;
}
}
/**
* Returns the array of strings (in dot notation) containing the
* notification types that the MBean may emit.
*
* @return the array of strings. Changing the returned array has no
* effect on this MBeanNotificationInfo.
*/
public String[] getNotifTypes() {
if (types.length == 0)
return NO_TYPES;
else
return types.clone();
}
private String[] fastGetNotifTypes() {
if (arrayGettersSafe)
return types;
else
return getNotifTypes();
}
public String toString() {
return
getClass().getName() + "[" +
"description=" + getDescription() + ", " +
"name=" + getName() + ", " +
"notifTypes=" + Arrays.asList(fastGetNotifTypes()) + ", " +
"descriptor=" + getDescriptor() +
"]";
}
/**
* Compare this MBeanNotificationInfo to another.
*
* @param o the object to compare to.
*
* @return true if and only if <code>o</code> is an MBeanNotificationInfo
* such that its {@link #getName()}, {@link #getDescription()},
* {@link #getDescriptor()},
* and {@link #getNotifTypes()} values are equal (not necessarily
* identical) to those of this MBeanNotificationInfo. Two
* notification type arrays are equal if their corresponding
* elements are equal. They are not equal if they have the same
* elements but in a different order.
*/
public boolean equals(Object o) {
if (o == this)
return true;
if (!(o instanceof MBeanNotificationInfo))
return false;
MBeanNotificationInfo p = (MBeanNotificationInfo) o;
return (Objects.equals(p.getName(), getName()) &&
Objects.equals(p.getDescription(), getDescription()) &&
Objects.equals(p.getDescriptor(), getDescriptor()) &&
Arrays.equals(p.fastGetNotifTypes(), fastGetNotifTypes()));
}
public int hashCode() {
int hash = getName().hashCode();
for (int i = 0; i < types.length; i++)
hash ^= types[i].hashCode();
return hash;
}
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
ObjectInputStream.GetField gf = ois.readFields();
String[] t = (String[])gf.get("types", null);
types = (t != null && t.length != 0) ? t.clone() : NO_TYPES;
}
}
⏎ javax/management/MBeanNotificationInfo.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, ≈552🔥, 7💬
Popular Posts:
How to download and install JDK (Java Development Kit) 6? If you want to write Java applications, yo...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
How to download and install Apache ZooKeeper Source Package? Apache ZooKeeper is an open-source serv...
What Is ojdbc7.jar for Oracle 12c R1? ojdbc7.jar for Oracle 12c R1 is the JAR files of ojdbc.jar, JD...
JDK 17 java.security.jgss.jmod is the JMOD file for JDK 17 Security JGSS (Java Generic Security Serv...