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/SplitIndexWriter.java
/* * Copyright (c) 1998, 2018, 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 java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.ListIterator; import java.util.Set; import java.util.TreeSet; 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.formats.html.markup.StringContent; 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 Separate Index Files for all the member names with Indexing in * Unicode Order. This will create "index-files" directory in the current or * destination directory and will generate separate file for each unicode index. * * <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> * * @see java.lang.Character * @author Atul M Dambalkar * @author Bhavesh Patel (Modified) */ public class SplitIndexWriter extends AbstractIndexWriter { private final List<Character> indexElements; /** * Construct the SplitIndexWriter. Uses path to this file and relative path * from this file. * * @param configuration the configuration for this doclet * @param path Path to the file which is getting generated. * @param indexbuilder Unicode based Index from {@link IndexBuilder} * @param elements the collection of characters for which to generate index files */ public SplitIndexWriter(HtmlConfiguration configuration, DocPath path, IndexBuilder indexbuilder, Collection<Character> elements) { super(configuration, path, indexbuilder); this.indexElements = new ArrayList<>(elements); } /** * Generate separate index files, for each Unicode character, listing all * the members starting with the particular unicode character. * * @param configuration the configuration for this doclet * @param indexbuilder IndexBuilder built by {@link IndexBuilder} * @throws DocFileIOException if there is a problem generating the index files */ public static void generate(HtmlConfiguration configuration, IndexBuilder indexbuilder) throws DocFileIOException { DocPath path = DocPaths.INDEX_FILES; Set<Character> keys = new TreeSet<>(indexbuilder.getIndexMap().keySet()); keys.addAll(configuration.tagSearchIndexKeys); ListIterator<Character> li = new ArrayList<>(keys).listIterator(); int prev; int next; while (li.hasNext()) { prev = (li.hasPrevious()) ? li.previousIndex() + 1 : -1; Object ch = li.next(); next = (li.hasNext()) ? li.nextIndex() + 1 : -1; DocPath filename = DocPaths.indexN(li.nextIndex()); SplitIndexWriter indexgen = new SplitIndexWriter(configuration, path.resolve(filename), indexbuilder, keys); indexgen.generateIndexFile((Character) ch); if (!li.hasNext()) { indexgen.createSearchIndexFiles(); } } } /** * Generate the contents of each index file, with Header, Footer, * Member Field, Method and Constructor Description. * * @param unicode Unicode character referring to the character for the * index. * @throws DocFileIOException if there is a problem generating an index file */ protected void generateIndexFile(Character unicode) throws DocFileIOException { String title = configuration.getText("doclet.Window_Split_Index", unicode.toString()); HtmlTree body = getBody(true, getWindowTitle(title)); HtmlTree htmlTree = (configuration.allowTag(HtmlTag.HEADER)) ? HtmlTree.HEADER() : body; addTop(htmlTree); navBar.setUserHeader(getUserHeaderFooter(true)); htmlTree.addContent(navBar.getContent(true)); if (configuration.allowTag(HtmlTag.HEADER)) { body.addContent(htmlTree); } HtmlTree divTree = new HtmlTree(HtmlTag.DIV); divTree.setStyle(HtmlStyle.contentContainer); addLinksForIndexes(divTree); if (configuration.tagSearchIndexMap.get(unicode) == null) { addContents(unicode, indexbuilder.getMemberList(unicode), divTree); } else if (indexbuilder.getMemberList(unicode) == null) { addSearchContents(unicode, configuration.tagSearchIndexMap.get(unicode), divTree); } else { addContents(unicode, indexbuilder.getMemberList(unicode), configuration.tagSearchIndexMap.get(unicode), divTree); } addLinksForIndexes(divTree); body.addContent((configuration.allowTag(HtmlTag.MAIN)) ? HtmlTree.MAIN(divTree) : divTree); if (configuration.allowTag(HtmlTag.FOOTER)) { htmlTree = HtmlTree.FOOTER(); } navBar.setUserFooter(getUserHeaderFooter(false)); htmlTree.addContent(navBar.getContent(false)); addBottom(htmlTree); if (configuration.allowTag(HtmlTag.FOOTER)) { body.addContent(htmlTree); } printHtmlDocument(null, true, body); } /** * Add links for all the Index Files per unicode character. * * @param contentTree the content tree to which the links for indexes will be added */ protected void addLinksForIndexes(Content contentTree) { for (int i = 0; i < indexElements.size(); i++) { int j = i + 1; contentTree.addContent(links.createLink(DocPaths.indexN(j), new StringContent(indexElements.get(i).toString()))); contentTree.addContent(Contents.SPACE); } contentTree.addContent(new HtmlTree(HtmlTag.BR)); contentTree.addContent(links.createLink(pathToRoot.resolve(DocPaths.ALLCLASSES_INDEX), contents.allClassesLabel)); if (!configuration.packages.isEmpty()) { contentTree.addContent(Contents.SPACE); contentTree.addContent(links.createLink(pathToRoot.resolve(DocPaths.ALLPACKAGES_INDEX), contents.allPackagesLabel)); } } }
⏎ jdk/javadoc/internal/doclets/formats/html/SplitIndexWriter.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, 70369👍, 0💬
Popular Posts:
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
What JAR files are required to run dom\Counter.java provided in the Apache Xerces package? You can f...
What Is log4j-1.2.15.jar? I got the JAR file from apache-log4j-1.2.15.zip. log4j-1.2.15.jar is the v...
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...