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 17 java.desktop.jmod - Desktop Module
JDK 17 java.desktop.jmod is the JMOD file for JDK 17 Desktop module.
JDK 17 Desktop module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.desktop.jmod.
JDK 17 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Desktop module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.desktop.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/beans/decoder/DocumentHandler.java
/* * Copyright (c) 2008, 2021, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.beans.decoder; import com.sun.beans.finder.ClassFinder; import java.beans.ExceptionListener; import java.io.IOException; import java.io.StringReader; import java.lang.ref.Reference; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.security.AccessControlContext; import java.security.AccessController; import java.security.PrivilegedAction; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParserFactory; import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; import jdk.internal.access.SharedSecrets; /** * The main class to parse JavaBeans XML archive. * * @since 1.7 * * @author Sergey A. Malenkov * * @see ElementHandler */ public final class DocumentHandler extends DefaultHandler { @SuppressWarnings("removal") private final AccessControlContext acc = AccessController.getContext(); private final Map<String, Class<? extends ElementHandler>> handlers = new HashMap<>(); private final Map<String, Object> environment = new HashMap<>(); private final List<Object> objects = new ArrayList<>(); private Reference<ClassLoader> loader; private ExceptionListener listener; private Object owner; private ElementHandler handler; /** * Creates new instance of document handler. */ public DocumentHandler() { setElementHandler("java", JavaElementHandler.class); // NON-NLS: the element name setElementHandler("null", NullElementHandler.class); // NON-NLS: the element name setElementHandler("array", ArrayElementHandler.class); // NON-NLS: the element name setElementHandler("class", ClassElementHandler.class); // NON-NLS: the element name setElementHandler("string", StringElementHandler.class); // NON-NLS: the element name setElementHandler("object", ObjectElementHandler.class); // NON-NLS: the element name setElementHandler("void", VoidElementHandler.class); // NON-NLS: the element name setElementHandler("char", CharElementHandler.class); // NON-NLS: the element name setElementHandler("byte", ByteElementHandler.class); // NON-NLS: the element name setElementHandler("short", ShortElementHandler.class); // NON-NLS: the element name setElementHandler("int", IntElementHandler.class); // NON-NLS: the element name setElementHandler("long", LongElementHandler.class); // NON-NLS: the element name setElementHandler("float", FloatElementHandler.class); // NON-NLS: the element name setElementHandler("double", DoubleElementHandler.class); // NON-NLS: the element name setElementHandler("boolean", BooleanElementHandler.class); // NON-NLS: the element name // some handlers for new elements setElementHandler("new", NewElementHandler.class); // NON-NLS: the element name setElementHandler("var", VarElementHandler.class); // NON-NLS: the element name setElementHandler("true", TrueElementHandler.class); // NON-NLS: the element name setElementHandler("false", FalseElementHandler.class); // NON-NLS: the element name setElementHandler("field", FieldElementHandler.class); // NON-NLS: the element name setElementHandler("method", MethodElementHandler.class); // NON-NLS: the element name setElementHandler("property", PropertyElementHandler.class); // NON-NLS: the element name } /** * Returns the class loader used to instantiate objects. * If the class loader has not been explicitly set * then {@code null} is returned. * * @return the class loader used to instantiate objects */ public ClassLoader getClassLoader() { return (this.loader != null) ? this.loader.get() : null; } /** * Sets the class loader used to instantiate objects. * If the class loader is not set * then default class loader will be used. * * @param loader a classloader to use */ public void setClassLoader(ClassLoader loader) { this.loader = new WeakReference<ClassLoader>(loader); } /** * Returns the exception listener for parsing. * The exception listener is notified * when handler catches recoverable exceptions. * If the exception listener has not been explicitly set * then default exception listener is returned. * * @return the exception listener for parsing */ public ExceptionListener getExceptionListener() { return this.listener; } /** * Sets the exception listener for parsing. * The exception listener is notified * when handler catches recoverable exceptions. * * @param listener the exception listener for parsing */ public void setExceptionListener(ExceptionListener listener) { this.listener = listener; } /** * Returns the owner of this document handler. * * @return the owner of this document handler */ public Object getOwner() { return this.owner; } /** * Sets the owner of this document handler. * * @param owner the owner of this document handler */ public void setOwner(Object owner) { this.owner = owner; } /** * Returns the handler for the element with specified name. * * @param name the name of the element * @return the corresponding element handler */ public Class<? extends ElementHandler> getElementHandler(String name) { Class<? extends ElementHandler> type = this.handlers.get(name); if (type == null) { throw new IllegalArgumentException("Unsupported element: " + name); } return type; } /** * Sets the handler for the element with specified name. * * @param name the name of the element * @param handler the corresponding element handler */ public void setElementHandler(String name, Class<? extends ElementHandler> handler) { this.handlers.put(name, handler); } /** * Indicates whether the variable with specified identifier is defined. * * @param id the identifier * @return @{code true} if the variable is defined; * @{code false} otherwise */ public boolean hasVariable(String id) { return this.environment.containsKey(id); } /** * Returns the value of the variable with specified identifier. * * @param id the identifier * @return the value of the variable */ public Object getVariable(String id) { if (!this.environment.containsKey(id)) { throw new IllegalArgumentException("Unbound variable: " + id); } return this.environment.get(id); } /** * Sets new value of the variable with specified identifier. * * @param id the identifier * @param value new value of the variable */ public void setVariable(String id, Object value) { this.environment.put(id, value); } /** * Returns the array of readed objects. * * @return the array of readed objects */ public Object[] getObjects() { return this.objects.toArray(); } /** * Adds the object to the list of readed objects. * * @param object the object that is readed from XML document */ void addObject(Object object) { this.objects.add(object); } /** * Disables any external entities. */ @Override public InputSource resolveEntity(String publicId, String systemId) { return new InputSource(new StringReader("")); } /** * Prepares this handler to read objects from XML document. */ @Override public void startDocument() { this.objects.clear(); this.handler = null; } /** * Parses opening tag of XML element * using corresponding element handler. * * @param uri the namespace URI, or the empty string * if the element has no namespace URI or * if namespace processing is not being performed * @param localName the local name (without prefix), or the empty string * if namespace processing is not being performed * @param qName the qualified name (with prefix), or the empty string * if qualified names are not available * @param attributes the attributes attached to the element */ @Override @SuppressWarnings("deprecation") public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { ElementHandler parent = this.handler; try { this.handler = getElementHandler(qName).newInstance(); this.handler.setOwner(this); this.handler.setParent(parent); } catch (Exception exception) { throw new SAXException(exception); } for (int i = 0; i < attributes.getLength(); i++) try { String name = attributes.getQName(i); String value = attributes.getValue(i); this.handler.addAttribute(name, value); } catch (RuntimeException exception) { handleException(exception); } this.handler.startElement(); } /** * Parses closing tag of XML element * using corresponding element handler. * * @param uri the namespace URI, or the empty string * if the element has no namespace URI or * if namespace processing is not being performed * @param localName the local name (without prefix), or the empty string * if namespace processing is not being performed * @param qName the qualified name (with prefix), or the empty string * if qualified names are not available */ @Override public void endElement(String uri, String localName, String qName) { try { this.handler.endElement(); } catch (RuntimeException exception) { handleException(exception); } finally { this.handler = this.handler.getParent(); } } /** * Parses character data inside XML element. * * @param chars the array of characters * @param start the start position in the character array * @param length the number of characters to use */ @Override public void characters(char[] chars, int start, int length) { if (this.handler != null) { try { while (0 < length--) { this.handler.addCharacter(chars[start++]); } } catch (RuntimeException exception) { handleException(exception); } } } /** * Handles an exception using current exception listener. * * @param exception an exception to handle * @see #setExceptionListener */ public void handleException(Exception exception) { if (this.listener == null) { throw new IllegalStateException(exception); } this.listener.exceptionThrown(exception); } /** * Starts parsing of the specified input source. * * @param input the input source to parse */ @SuppressWarnings("removal") public void parse(final InputSource input) { if ((this.acc == null) && (null != System.getSecurityManager())) { throw new SecurityException("AccessControlContext is not set"); } AccessControlContext stack = AccessController.getContext(); SharedSecrets.getJavaSecurityAccess().doIntersectionPrivilege(new PrivilegedAction<Void>() { public Void run() { try { SAXParserFactory.newInstance().newSAXParser().parse(input, DocumentHandler.this); } catch (ParserConfigurationException exception) { handleException(exception); } catch (SAXException wrapper) { Exception exception = wrapper.getException(); if (exception == null) { exception = wrapper; } handleException(exception); } catch (IOException exception) { handleException(exception); } return null; } }, stack, this.acc); } /** * Resolves class by name using current class loader. * This method handles exception using current exception listener. * * @param name the name of the class * @return the object that represents the class */ public Class<?> findClass(String name) { try { return ClassFinder.resolveClass(name, getClassLoader()); } catch (ClassNotFoundException exception) { handleException(exception); return null; } } }
⏎ com/sun/beans/decoder/DocumentHandler.java
Or download all of them as a single archive file:
File name: java.desktop-17.0.5-src.zip File size: 9152233 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.instrument.jmod - Instrument Module
2023-09-16, 74041👍, 0💬
Popular Posts:
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...
What Is javax.websocket-api-1.1. jar?javax.websocket-api-1.1. jaris the JAR file for Java API for We...