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/formats/html/AllClassesFrameWriter.java
/* * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.javadoc.internal.doclets.formats.html; import javax.lang.model.element.Element; import javax.lang.model.element.TypeElement; import jdk.javadoc.internal.doclets.formats.html.markup.HtmlConstants; import jdk.javadoc.internal.doclets.formats.html.markup.HtmlStyle; import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTag; import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree; import jdk.javadoc.internal.doclets.toolkit.Content; import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException; import jdk.javadoc.internal.doclets.toolkit.util.DocPath; import jdk.javadoc.internal.doclets.toolkit.util.DocPaths; import jdk.javadoc.internal.doclets.toolkit.util.IndexBuilder; /** * Generate the file with list of all the classes in this run. This page will be * used in the left-hand bottom frame, when "All Classes" link is clicked in * the left-hand top frame. The name of the generated file is * "allclasses-frame.html". * * <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 Atul M Dambalkar * @author Doug Kramer * @author Bhavesh Patel (Modified) */ public class AllClassesFrameWriter extends HtmlDocletWriter { /** * Index of all the classes. */ protected IndexBuilder indexbuilder; /** * BR tag to be used within a document tree. */ final HtmlTree BR = new HtmlTree(HtmlTag.BR); /** * Construct AllClassesFrameWriter object. Also initializes the indexbuilder * variable in this class. * @param configuration The current configuration * @param filename Path to the file which is getting generated. * @param indexbuilder Unicode based Index from {@link IndexBuilder} */ public AllClassesFrameWriter(HtmlConfiguration configuration, DocPath filename, IndexBuilder indexbuilder) { super(configuration, filename); this.indexbuilder = indexbuilder; } /** * Create AllClassesFrameWriter object. Then use it to generate the * "allclasses-frame.html" file. Generate the file in the current or the * destination directory. * * @param indexBuilder IndexBuilder object for all classes index. * @throws DocFileIOException */ public static void generate(HtmlConfiguration configuration, IndexBuilder indexBuilder) throws DocFileIOException { if (configuration.frames) { generate(configuration, indexBuilder, DocPaths.ALLCLASSES_FRAME, true); generate(configuration, indexBuilder, DocPaths.ALLCLASSES_NOFRAME, false); } else { generate(configuration, indexBuilder, DocPaths.ALLCLASSES, false); } } private static void generate(HtmlConfiguration configuration, IndexBuilder indexBuilder, DocPath fileName, boolean wantFrames) throws DocFileIOException { AllClassesFrameWriter allclassgen = new AllClassesFrameWriter(configuration, fileName, indexBuilder); allclassgen.buildAllClassesFile(wantFrames); allclassgen = new AllClassesFrameWriter(configuration, fileName, indexBuilder); } /** * Print all the classes in the file. * @param wantFrames True if we want frames. */ protected void buildAllClassesFile(boolean wantFrames) throws DocFileIOException { String label = configuration.getText("doclet.All_Classes"); Content body = getBody(false, getWindowTitle(label)); Content heading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, HtmlStyle.bar, contents.allClassesLabel); body.addContent(heading); Content ul = new HtmlTree(HtmlTag.UL); // Generate the class links and add it to the tdFont tree. addAllClasses(ul, wantFrames); HtmlTree htmlTree = (configuration.allowTag(HtmlTag.MAIN)) ? HtmlTree.MAIN(HtmlStyle.indexContainer, ul) : HtmlTree.DIV(HtmlStyle.indexContainer, ul); body.addContent(htmlTree); printHtmlDocument(null, false, body); } /** * Use the sorted index of all the classes and add all the classes to the * content list. * * @param content HtmlTree content to which all classes information will be added * @param wantFrames True if we want frames. */ protected void addAllClasses(Content content, boolean wantFrames) { for (Character unicode : indexbuilder.index()) { addContents(indexbuilder.getMemberList(unicode), wantFrames, content); } } /** * Given a list of classes, generate links for each class or interface. * If the class kind is interface, print it in the italics font. Also all * links should target the right-hand frame. If clicked on any class name * in this page, appropriate class page should get opened in the right-hand * frame. * * @param classlist Sorted list of classes. * @param wantFrames True if we want frames. * @param content HtmlTree content to which the links will be added */ protected void addContents(Iterable<? extends Element> classlist, boolean wantFrames, Content content) { for (Element element : classlist) { TypeElement typeElement = (TypeElement)element; if (!utils.isCoreClass(typeElement)) { continue; } Content label = interfaceName(typeElement, false); Content linkContent; if (wantFrames) { linkContent = getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.ALL_CLASSES_FRAME, typeElement).label(label).target("classFrame")); } else { linkContent = getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.DEFAULT, typeElement).label(label)); } Content li = HtmlTree.LI(linkContent); content.addContent(li); } } }
⏎ jdk/javadoc/internal/doclets/formats/html/AllClassesFrameWriter.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, 72217👍, 0💬
Popular Posts:
XStream is a simple library to serialize objects to XML and back again. JAR File Size and Download L...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...
What Is commons-logging-1.2.jar? commons-logging-1.2.jar is the JAR file for Apache Commons Logging ...
How to display XML element type information with the jaxp\TypeInfoWriter.java provided in the Apache...