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 11 jdk.javadoc.jmod - Java Document Tool
JDK 11 jdk.javadoc.jmod is the JMOD file for JDK 11 Java Document tool, which can be invoked by the "javadoc" command.
JDK 11 Java Document tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.javadoc.jmod.
JDK 11 Java Document tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Java Document tool source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.javadoc.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/javadoc/internal/doclets/toolkit/util/links/LinkFactory.java
/* * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.javadoc.internal.doclets.toolkit.util.links; import java.util.List; import javax.lang.model.element.Element; import javax.lang.model.element.TypeElement; import javax.lang.model.element.TypeParameterElement; import javax.lang.model.type.ArrayType; import javax.lang.model.type.DeclaredType; import javax.lang.model.type.TypeMirror; import javax.lang.model.type.TypeVariable; import javax.lang.model.type.WildcardType; import javax.lang.model.util.SimpleTypeVisitor9; import jdk.javadoc.internal.doclets.toolkit.Content; import jdk.javadoc.internal.doclets.toolkit.util.Utils; /** * A factory that constructs links from given link information. * * <p><b>This is NOT part of any supported API. * If you write code that depends on this, you do so at your own risk. * This code and its internal interfaces are subject to change or * deletion without notice.</b> * * @author Jamie Ho */ public abstract class LinkFactory { protected final Utils utils; protected LinkFactory(Utils utils) { this.utils = utils; } /** * Return an empty instance of a content object. * * @return an empty instance of a content object. */ protected abstract Content newContent(); /** * Constructs a link from the given link information. * * @param linkInfo the information about the link. * @return the output of the link. */ public Content getLink(LinkInfo linkInfo) { if (linkInfo.type != null) { SimpleTypeVisitor9<Content, LinkInfo> linkVisitor = new SimpleTypeVisitor9<Content, LinkInfo>() { TypeMirror componentType = utils.getComponentType(linkInfo.type); Content link = newContent(); // handles primitives, no types and error types @Override protected Content defaultAction(TypeMirror type, LinkInfo linkInfo) { link.addContent(utils.getTypeName(type, false)); return link; } int currentDepth = 0; @Override public Content visitArray(ArrayType type, LinkInfo linkInfo) { // keep track of the dimension depth and replace the last dimension // specifier with vararags, when the stack is fully unwound. currentDepth++; linkInfo.type = type.getComponentType(); visit(linkInfo.type, linkInfo); currentDepth--; if (utils.isAnnotated(type)) { linkInfo.type = type; link.addContent(" "); link.addContent(getTypeAnnotationLinks(linkInfo)); } // use vararg if required if (linkInfo.isVarArg && currentDepth == 0) { link.addContent("..."); } else { link.addContent("[]"); } return link; } @Override public Content visitWildcard(WildcardType type, LinkInfo linkInfo) { linkInfo.isTypeBound = true; link.addContent("?"); TypeMirror extendsBound = type.getExtendsBound(); if (extendsBound != null) { link.addContent(" extends "); setBoundsLinkInfo(linkInfo, extendsBound); link.addContent(getLink(linkInfo)); } TypeMirror superBound = type.getSuperBound(); if (superBound != null) { link.addContent(" super "); setBoundsLinkInfo(linkInfo, superBound); link.addContent(getLink(linkInfo)); } return link; } @Override public Content visitTypeVariable(TypeVariable type, LinkInfo linkInfo) { link.addContent(getTypeAnnotationLinks(linkInfo)); linkInfo.isTypeBound = true; TypeVariable typevariable = (utils.isArrayType(type)) ? (TypeVariable) componentType : type; Element owner = typevariable.asElement().getEnclosingElement(); if ((!linkInfo.excludeTypeParameterLinks) && utils.isTypeElement(owner)) { linkInfo.typeElement = (TypeElement) owner; Content label = newContent(); label.addContent(utils.getTypeName(type, false)); linkInfo.label = label; link.addContent(getClassLink(linkInfo)); } else { // No need to link method type parameters. link.addContent(utils.getTypeName(typevariable, false)); } if (!linkInfo.excludeTypeBounds) { linkInfo.excludeTypeBounds = true; TypeParameterElement tpe = ((TypeParameterElement) typevariable.asElement()); boolean more = false; List<? extends TypeMirror> bounds = utils.getBounds(tpe); for (TypeMirror bound : bounds) { // we get everything as extends java.lang.Object we suppress // all of them except those that have multiple extends if (bounds.size() == 1 && bound.equals(utils.getObjectType()) && !utils.isAnnotated(bound)) { continue; } link.addContent(more ? " & " : " extends "); setBoundsLinkInfo(linkInfo, bound); link.addContent(getLink(linkInfo)); more = true; } } return link; } @Override public Content visitDeclared(DeclaredType type, LinkInfo linkInfo) { if (linkInfo.isTypeBound && linkInfo.excludeTypeBoundsLinks) { // Since we are excluding type parameter links, we should not // be linking to the type bound. link.addContent(utils.getTypeName(type, false)); link.addContent(getTypeParameterLinks(linkInfo)); return link; } else { link = newContent(); link.addContent(getTypeAnnotationLinks(linkInfo)); linkInfo.typeElement = utils.asTypeElement(type); link.addContent(getClassLink(linkInfo)); if (linkInfo.includeTypeAsSepLink) { link.addContent(getTypeParameterLinks(linkInfo, false)); } } return link; } }; return linkVisitor.visit(linkInfo.type, linkInfo); } else if (linkInfo.typeElement != null) { Content link = newContent(); link.addContent(getClassLink(linkInfo)); if (linkInfo.includeTypeAsSepLink) { link.addContent(getTypeParameterLinks(linkInfo, false)); } return link; } else { return null; } } private void setBoundsLinkInfo(LinkInfo linkInfo, TypeMirror bound) { linkInfo.typeElement = null; linkInfo.label = null; linkInfo.type = bound; } /** * Returns a link to the given class. * * @param linkInfo the information about the link to construct * * @return the link for the given class. */ protected abstract Content getClassLink(LinkInfo linkInfo); /** * Returns links to the type parameters. * * @param linkInfo the information about the link to construct * @param isClassLabel true if this is a class label, or false if it is * the type parameters portion of the link * @return the links to the type parameters */ protected abstract Content getTypeParameterLinks(LinkInfo linkInfo, boolean isClassLabel); /** * Returns links to the type parameters. * * @param linkInfo the information about the link to construct * @return the links to the type parameters. */ public Content getTypeParameterLinks(LinkInfo linkInfo) { return getTypeParameterLinks(linkInfo, true); } public abstract Content getTypeAnnotationLinks(LinkInfo linkInfo); }
⏎ jdk/javadoc/internal/doclets/toolkit/util/links/LinkFactory.java
Or download all of them as a single archive file:
File name: jdk.javadoc-11.0.1-src.zip File size: 680806 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jcmd.jmod - JCmd Tool
2020-07-22, 70384👍, 0💬
Popular Posts:
JDK 11 jdk.jdi.jmod is the JMOD file for JDK 11 JDI (Java Debug Interface) tool. JDK 11 JDI tool com...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...
xml-commons External Source Code Files are provided in the source package file, xml-commons-external...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...