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:
JDK 11 jdk.compiler.jmod - Compiler Tool
JDK 11 jdk.compiler.jmod is the JMOD file for JDK 11 Compiler tool,
which can be invoked by the "javac" command.
JDK 11 Compiler tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.compiler.jmod.
JDK 11 Compiler tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Compiler source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.compiler.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/source/util/SimpleDocTreeVisitor.java
/* * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.source.util; import com.sun.source.doctree.*; /** * A simple visitor for tree nodes. * * @param <R> the return type of this visitor's methods. Use {@link * Void} for visitors that do not need to return results. * @param <P> the type of the additional parameter to this visitor's * methods. Use {@code Void} for visitors that do not need an * additional parameter. * * @since 1.8 */ public class SimpleDocTreeVisitor<R,P> implements DocTreeVisitor<R, P> { /** * The default value, returned by the {@link #defaultAction default action}. */ protected final R DEFAULT_VALUE; /** * Creates a visitor, with a DEFAULT_VALUE of {@code null}. */ protected SimpleDocTreeVisitor() { DEFAULT_VALUE = null; } /** * Creates a visitor, with a specified DEFAULT_VALUE. * @param defaultValue the default value to be returned by the default action. */ protected SimpleDocTreeVisitor(R defaultValue) { DEFAULT_VALUE = defaultValue; } /** * The default action, used by all visit methods that are not overridden. * @param node the node being visited * @param p the parameter value passed to the visit method * @return the result value to be returned from the visit method */ protected R defaultAction(DocTree node, P p) { return DEFAULT_VALUE; } /** * Invokes the appropriate visit method specific to the type of the node. * @param node the node on which to dispatch * @param p a parameter to be passed to the appropriate visit method * @return the value returns from the appropriate visit method */ public final R visit(DocTree node, P p) { return (node == null) ? null : node.accept(this, p); } /** * Invokes the appropriate visit method on each of a sequence of nodes. * @param nodes the nodes on which to dispatch * @param p a parameter value to be passed to each appropriate visit method * @return the value return from the last of the visit methods, or null * if none were called. */ public final R visit(Iterable<? extends DocTree> nodes, P p) { R r = null; if (nodes != null) { for (DocTree node : nodes) r = visit(node, p); } return r; } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitAttribute(AttributeTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitAuthor(AuthorTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitComment(CommentTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitDeprecated(DeprecatedTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitDocComment(DocCommentTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitDocRoot(DocRootTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} * * @implSpec This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} * @since 10 */ @Override public R visitDocType(DocTypeTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitEndElement(EndElementTree node, P p) { return defaultAction(node, p);} /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitEntity(EntityTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitErroneous(ErroneousTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} * * @since 9 */ @Override public R visitHidden(HiddenTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitIdentifier(IdentifierTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} * * @since 9 */ @Override public R visitIndex(IndexTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitInheritDoc(InheritDocTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitLink(LinkTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitLiteral(LiteralTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitParam(ParamTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} * * @since 9 */ @Override public R visitProvides(ProvidesTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitReference(ReferenceTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitReturn(ReturnTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitSee(SeeTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitSerial(SerialTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitSerialData(SerialDataTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitSerialField(SerialFieldTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitSince(SinceTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitStartElement(StartElementTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} * @since 10 */ @Override public R visitSummary(SummaryTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitText(TextTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitThrows(ThrowsTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitUnknownBlockTag(UnknownBlockTagTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitUnknownInlineTag(UnknownInlineTagTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} * * @since 9 */ @Override public R visitUses(UsesTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitValue(ValueTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitVersion(VersionTree node, P p) { return defaultAction(node, p); } /** * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override public R visitOther(DocTree node, P p) { return defaultAction(node, p); } }
⏎ com/sun/source/util/SimpleDocTreeVisitor.java
Or download all of them as a single archive file:
File name: jdk.compiler-11.0.1-src.zip File size: 1347269 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.crypto.cryptoki.jmod - Crypto KI Module
2020-08-13, 136253👍, 0💬
Popular Posts:
The JDT project provides the tool plug-ins that implement a Java IDE supporting the development of a...
How to read XML document with DTD validation from socket connections with the socket\DelayedInput.ja.. .
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
JDK 11 jdk.aot.jmod is the JMOD file for JDK 11 Ahead-of-Time (AOT) Compiler module. JDK 11 AOT Comp...
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...