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/doclet/Taglet.java
/* * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.javadoc.doclet; import java.util.List; import java.util.Set; import javax.lang.model.element.Element; import com.sun.source.doctree.DocTree; /** * The interface for a custom taglet supported by doclets such as * the {@link jdk.javadoc.doclet.StandardDoclet standard doclet}. * Custom taglets are used to handle custom tags in documentation * comments. * * <p>A custom taglet must implement this interface, and must have * a public default constructor (i.e. a public constructor with no * parameters), by which, the doclet will instantiate and * register the custom taglet. * * @since 9 */ public interface Taglet { /** * Returns the set of locations in which a tag may be used. * @return the set of locations in which a tag may be used */ Set<Location> getAllowedLocations(); /** * Indicates whether this taglet is for inline tags or not. * @return true if this taglet is for an inline tag, and false otherwise */ boolean isInlineTag(); /** * Returns the name of the tag. * @return the name of this custom tag. */ String getName(); /** * Initializes this taglet with the given doclet environment and doclet. * * @apiNote * The environment may be used to access utility classes for * {@link javax.lang.model.util.Elements elements} and * {@link javax.lang.model.util.Types types} if needed. * * @implSpec * This implementation does nothing. * * @param env the environment in which the doclet and taglet are running * @param doclet the doclet that instantiated this taglet */ default void init(DocletEnvironment env, Doclet doclet) { } /** * Returns the string representation of a series of instances of * this tag to be included in the generated output. * If this taglet is for an {@link #isInlineTag inline} tag it will * be called once per instance of the tag, each time with a singleton list. * Otherwise, if this tag is a block tag, it will be called once per * comment, with a list of all the instances of the tag in a comment. * @param tags the list of instances of this tag * @param element the element to which the enclosing comment belongs * @return the string representation of the tags to be included in * the generated output */ String toString(List<? extends DocTree> tags, Element element); /** * The kind of location in which a tag may be used. */ public static enum Location { /** In an Overview document. */ OVERVIEW, /** In the documentation for a module. */ MODULE, /** In the documentation for a package. */ PACKAGE, /** In the documentation for a class, interface or enum. */ TYPE, /** In the documentation for a constructor. */ CONSTRUCTOR, /** In the documentation for a method. */ METHOD, /** In the documentation for a field. */ FIELD } }
⏎ jdk/javadoc/doclet/Taglet.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, 72150👍, 0💬
Popular Posts:
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
What Is poi-5.2.3.jar? poi-5.2.3.jar is one of the JAR files for Apache POI 5.2.3, which provides an...
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
Guava is a suite of core and expanded libraries that include utility classes, google's collections, ...