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 17 jdk.javadoc.jmod - Java Document Tool
JDK 17 jdk.javadoc.jmod is the JMOD file for JDK 17 Java Document tool,
which can be invoked by the "javadoc" command.
JDK 17 Java Document tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.javadoc.jmod.
JDK 17 Java Document tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Java Document tool source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.javadoc.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/javadoc/doclet/StandardDoclet.java
/*
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.javadoc.doclet;
import java.util.Locale;
import java.util.List;
import java.util.Set;
import javax.lang.model.element.Element;
import javax.lang.model.SourceVersion;
import jdk.javadoc.internal.doclets.formats.html.HtmlDoclet;
/**
* This doclet generates HTML-formatted documentation for the specified modules,
* packages and types.
*
* <h2><a id="user-defined-taglets">User-Defined Taglets</a></h2>
*
* The standard doclet supports user-defined {@link Taglet taglets},
* which can be used to generate customized output for user-defined tags
* in documentation comments.
*
* Taglets invoked by the standard doclet must return strings from
* {@link Taglet#toString(List,Element) Taglet.toString} as follows:
*
* <dl>
* <dt> <i>Inline Tags</i>
* <dd> The returned string must be
* <a href="https://www.w3.org/TR/html52/dom.html#flow-content">flow content</a>,
* or any valid fragment of HTML code that may appear in the body of a document.
* There may be additional constraints, depending on how the tag is to be
* used in a documentation comment: for example, if the tag may be used
* within an inline element such as {@code <b>} or {@code <i>}, the taglet
* must not return a string containing block tags, like {@code <h3>} or
* {@code <p>}.
* <dt> <i>Block Tags</i>
* <dd> The returned string must be suitable content for a definition list,
* or {@code <dl>} element. It will typically be a series of pairs
* of {@code <dt>} and {@code <dd>} elements.
* </dl>
*
* @see <a href="{@docRoot}/../specs/javadoc/doc-comment-spec.html">
* Documentation Comment Specification for the Standard Doclet</a>
*/
public class StandardDoclet implements Doclet {
private final HtmlDoclet htmlDoclet;
/**
* Creates an instance of the standard doclet, used to generate HTML-formatted
* documentation.
*/
public StandardDoclet() {
htmlDoclet = new HtmlDoclet(this);
}
@Override
public void init(Locale locale, Reporter reporter) {
htmlDoclet.init(locale, reporter);
}
@Override
public String getName() {
return "Standard";
}
@Override
public Set<? extends Doclet.Option> getSupportedOptions() {
return htmlDoclet.getSupportedOptions();
}
@Override
public SourceVersion getSupportedSourceVersion() {
return htmlDoclet.getSupportedSourceVersion();
}
@Override
public boolean run(DocletEnvironment docEnv) {
return htmlDoclet.run(docEnv);
}
/**
* {@return the locale for this doclet}
*
* @see #init(Locale, Reporter)
*
* @since 17
*/
public Locale getLocale() {
return htmlDoclet.getConfiguration().getLocale();
}
/**
* {@return the reporter for this doclet}
*
* @see #init(Locale, Reporter)
*
* @since 17
*/
public Reporter getReporter() {
return htmlDoclet.getConfiguration().getReporter();
}
}
⏎ jdk/javadoc/doclet/StandardDoclet.java
Or download all of them as a single archive file:
File name: jdk.javadoc-17.0.5-src.zip File size: 587730 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jcmd.jmod - JCmd Tool
2023-08-17, ≈71🔥, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 6? If you want to write Java applications, yo...
JDK 17 jdk.jshell.jmod is the JMOD file for JDK 17 JShell tool, which can be invoked by the "jshell"...
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
JSP(tm) Standard Tag Library 1.0 implementation - Jakarta Taglibs hosts the Standard Taglib 1.0, an ...
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...