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/ElementHandler.java
/* * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.beans.decoder; /** * The base class for element handlers. * * @since 1.7 * * @author Sergey A. Malenkov * * @see DocumentHandler */ public abstract class ElementHandler { private DocumentHandler owner; private ElementHandler parent; private String id; /** * Returns the document handler that creates this element handler. * * @return the owner document handler */ public final DocumentHandler getOwner() { return this.owner; } /** * Sets the document handler that creates this element handler. * The owner document handler should be set after instantiation. * Such approach is used to simplify the extensibility. * * @param owner the owner document handler * @see DocumentHandler#startElement */ final void setOwner(DocumentHandler owner) { if (owner == null) { throw new IllegalArgumentException("Every element should have owner"); } this.owner = owner; } /** * Returns the element handler that contains this one. * * @return the parent element handler */ public final ElementHandler getParent() { return this.parent; } /** * Sets the element handler that contains this one. * The parent element handler should be set after instantiation. * Such approach is used to simplify the extensibility. * * @param parent the parent element handler * @see DocumentHandler#startElement */ final void setParent(ElementHandler parent) { this.parent = parent; } /** * Returns the value of the variable with specified identifier. * * @param id the identifier * @return the value of the variable */ protected final Object getVariable(String id) { if (id.equals(this.id)) { ValueObject value = getValueObject(); if (value.isVoid()) { throw new IllegalStateException("The element does not return value"); } return value.getValue(); } return (this.parent != null) ? this.parent.getVariable(id) : this.owner.getVariable(id); } /** * Returns the value of the parent element. * * @return the value of the parent element */ protected Object getContextBean() { if (this.parent != null) { ValueObject value = this.parent.getValueObject(); if (!value.isVoid()) { return value.getValue(); } throw new IllegalStateException("The outer element does not return value"); } else { Object value = this.owner.getOwner(); if (value != null) { return value; } throw new IllegalStateException("The topmost element does not have context"); } } /** * Parses attributes of the element. * By default, the following attribute is supported: * <dl> * <dt>id * <dd>the identifier of the variable that is intended to store the result * </dl> * * @param name the attribute name * @param value the attribute value */ public void addAttribute(String name, String value) { if (name.equals("id")) { // NON-NLS: the attribute name this.id = value; } else { throw new IllegalArgumentException("Unsupported attribute: " + name); } } /** * This method is called before parsing of the element's body. * All attributes are parsed at this point. * By default, do nothing. */ public void startElement() { } /** * This method is called after parsing of the element's body. * By default, it calculates the value of this element. * The following tasks are executing for any non-void value: * <ol> * <li>If the {@code id} attribute is set * the value of the variable with the specified identifier * is set to the value of this element.</li> * <li>This element is used as an argument of parent element if it is possible.</li> * </ol> * * @see #isArgument */ public void endElement() { // do nothing if no value returned ValueObject value = getValueObject(); if (!value.isVoid()) { if (this.id != null) { this.owner.setVariable(this.id, value.getValue()); } if (isArgument()) { if (this.parent != null) { this.parent.addArgument(value.getValue()); } else { this.owner.addObject(value.getValue()); } } } } /** * Adds the character that contained in this element. * By default, only whitespaces are acceptable. * * @param ch the character */ public void addCharacter(char ch) { if ((ch != ' ') && (ch != '\n') && (ch != '\t') && (ch != '\r')) { throw new IllegalStateException("Illegal character with code " + (int) ch); } } /** * Adds the argument that is used to calculate the value of this element. * By default, no arguments are acceptable. * * @param argument the value of the element that contained in this one */ protected void addArgument(Object argument) { throw new IllegalStateException("Could not add argument to simple element"); } /** * Tests whether the value of this element can be used * as an argument of the element that contained in this one. * * @return {@code true} if the value of this element can be used * as an argument of the element that contained in this one, * {@code false} otherwise */ protected boolean isArgument() { return this.id == null; } /** * Returns the value of this element. * * @return the value of this element */ protected abstract ValueObject getValueObject(); }
⏎ com/sun/beans/decoder/ElementHandler.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, 66369👍, 0💬
Popular Posts:
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
What JAR files are required to run dom\Writer.java provided in the Apache Xerces package? 3 JAR file...
What Is jsse.jar (JDK 6) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Ja...
Apache Commons Codec library provides implementations of common encoders and decoders such as Base64...