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/builders/AnnotationTypeBuilder.java
/* * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.javadoc.internal.doclets.toolkit.builders; import javax.lang.model.element.PackageElement; import javax.lang.model.element.TypeElement; import jdk.javadoc.internal.doclets.toolkit.AnnotationTypeWriter; import jdk.javadoc.internal.doclets.toolkit.Content; import jdk.javadoc.internal.doclets.toolkit.DocFilesHandler; import jdk.javadoc.internal.doclets.toolkit.DocletException; /** * Builds the summary for a given annotation type. * * <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 * @author Bhavesh Patel (Modified) */ public class AnnotationTypeBuilder extends AbstractBuilder { /** * The annotation type being documented. */ private final TypeElement annotationType; /** * The doclet specific writer. */ private final AnnotationTypeWriter writer; /** * The content tree for the annotation documentation. */ private Content contentTree; /** * Construct a new ClassBuilder. * * @param context the build context. * @param annotationTypeElement the class being documented. * @param writer the doclet specific writer. */ private AnnotationTypeBuilder(Context context, TypeElement annotationTypeElement, AnnotationTypeWriter writer) { super(context); this.annotationType = annotationTypeElement; this.writer = writer; } /** * Construct a new AnnotationTypeBuilder. * * @param context the build context. * @param annotationTypeDoc the class being documented. * @param writer the doclet specific writer. * @return an AnnotationTypeBuilder */ public static AnnotationTypeBuilder getInstance(Context context, TypeElement annotationTypeDoc, AnnotationTypeWriter writer) { return new AnnotationTypeBuilder(context, annotationTypeDoc, writer); } /** * {@inheritDoc} */ @Override public void build() throws DocletException { buildAnnotationTypeDoc(contentTree); } /** * Build the annotation type documentation. * * @param contentTree the content tree to which the documentation will be added * @throws DocletException if there is a problem building the documentation */ protected void buildAnnotationTypeDoc(Content contentTree) throws DocletException { contentTree = writer.getHeader(configuration.getText("doclet.AnnotationType") + " " + utils.getSimpleName(annotationType)); Content annotationContentTree = writer.getAnnotationContentHeader(); buildAnnotationTypeInfo(annotationContentTree); buildMemberSummary(annotationContentTree); buildAnnotationTypeMemberDetails(annotationContentTree); writer.addAnnotationContentTree(contentTree, annotationContentTree); writer.addFooter(contentTree); writer.printDocument(contentTree); copyDocFiles(); } /** * Copy the doc files for the current TypeElement if necessary. * * @throws DocletException if there is a problem building the documentation */ private void copyDocFiles() throws DocletException { PackageElement containingPackage = utils.containingPackage(annotationType); if ((configuration.packages == null || !configuration.packages.contains(containingPackage) && !containingPackagesSeen.contains(containingPackage))){ //Only copy doc files dir if the containing package is not //documented AND if we have not documented a class from the same //package already. Otherwise, we are making duplicate copies. DocFilesHandler docFilesHandler = configuration .getWriterFactory() .getDocFilesHandler(containingPackage); docFilesHandler.copyDocFiles(); containingPackagesSeen.add(containingPackage); } } /** * Build the annotation information tree documentation. * * @param annotationContentTree the content tree to which the documentation will be added * @throws DocletException if there is a problem building the documentation */ protected void buildAnnotationTypeInfo(Content annotationContentTree) throws DocletException { Content annotationInfoTree = writer.getAnnotationInfoTreeHeader(); buildAnnotationTypeSignature(annotationInfoTree); buildDeprecationInfo(annotationInfoTree); buildAnnotationTypeDescription(annotationInfoTree); buildAnnotationTypeTagInfo(annotationInfoTree); annotationContentTree.addContent(writer.getAnnotationInfo(annotationInfoTree)); } /** * If this annotation is deprecated, build the appropriate information. * * @param annotationInfoTree the content tree to which the documentation will be added */ protected void buildDeprecationInfo(Content annotationInfoTree) { writer.addAnnotationTypeDeprecationInfo(annotationInfoTree); } /** * Build the signature of the current annotation type. * * @param annotationInfoTree the content tree to which the documentation will be added */ protected void buildAnnotationTypeSignature(Content annotationInfoTree) { writer.addAnnotationTypeSignature(utils.modifiersToString(annotationType, true), annotationInfoTree); } /** * Build the annotation type description. * * @param annotationInfoTree the content tree to which the documentation will be added */ protected void buildAnnotationTypeDescription(Content annotationInfoTree) { writer.addAnnotationTypeDescription(annotationInfoTree); } /** * Build the tag information for the current annotation type. * * @param annotationInfoTree the content tree to which the documentation will be added */ protected void buildAnnotationTypeTagInfo(Content annotationInfoTree) { writer.addAnnotationTypeTagInfo(annotationInfoTree); } /** * Build the member summary contents of the page. * * @param annotationContentTree the content tree to which the documentation will be added * @throws DocletException if there is a problem building the documentation */ protected void buildMemberSummary(Content annotationContentTree) throws DocletException { Content memberSummaryTree = writer.getMemberTreeHeader(); builderFactory.getMemberSummaryBuilder(writer).build(memberSummaryTree); annotationContentTree.addContent(writer.getMemberSummaryTree(memberSummaryTree)); } /** * Build the member details contents of the page. * * @param annotationContentTree the content tree to which the documentation will be added * @throws DocletException if there is a problem building the documentation */ protected void buildAnnotationTypeMemberDetails(Content annotationContentTree) throws DocletException { Content memberDetailsTree = writer.getMemberTreeHeader(); buildAnnotationTypeFieldDetails(memberDetailsTree); buildAnnotationTypeRequiredMemberDetails(memberDetailsTree); buildAnnotationTypeOptionalMemberDetails(memberDetailsTree); if (memberDetailsTree.isValid()) { annotationContentTree.addContent(writer.getMemberDetailsTree(memberDetailsTree)); } } /** * Build the annotation type field documentation. * * @param memberDetailsTree the content tree to which the documentation will be added * @throws DocletException if there is a problem building the documentation */ protected void buildAnnotationTypeFieldDetails(Content memberDetailsTree) throws DocletException { builderFactory.getAnnotationTypeFieldsBuilder(writer).build(memberDetailsTree); } /** * Build the annotation type optional member documentation. * * @param memberDetailsTree the content tree to which the documentation will be added * @throws DocletException if there is a problem building the documentation */ protected void buildAnnotationTypeOptionalMemberDetails(Content memberDetailsTree) throws DocletException { builderFactory.getAnnotationTypeOptionalMemberBuilder(writer).build(memberDetailsTree); } /** * Build the annotation type required member documentation. * * @param memberDetailsTree the content tree to which the documentation will be added * @throws DocletException if there is a problem building the documentation */ protected void buildAnnotationTypeRequiredMemberDetails(Content memberDetailsTree) throws DocletException { builderFactory.getAnnotationTypeRequiredMemberBuilder(writer).build(memberDetailsTree); } }
⏎ jdk/javadoc/internal/doclets/toolkit/builders/AnnotationTypeBuilder.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, 73474👍, 0💬
Popular Posts:
What is the jaxp\SourceValidator.jav aprovided in the Apache Xerces package? I have Apache Xerces 2....
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...
How to run "javac" command from JDK tools.jar file? "javac" is the Java compiler command that allows...
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
What Is mail.jar of JavaMail 1.4? I got the JAR file from javamail-1_4.zip. mail.jar in javamail-1_4...