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
⏎ com/sun/javadoc/ClassDoc.java
/* * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javadoc; /** * Represents a java class or interface and provides access to * information about the class, the class's comment and tags, and the * members of the class. A ClassDoc only exists if it was * processed in this run of javadoc. References to classes * which may or may not have been processed in this run are * referred to using Type (which can be converted to ClassDoc, * if possible). * * @see Type * * @since 1.2 * @author Kaiyang Liu (original) * @author Robert Field (rewrite) * * @deprecated * The declarations in this package have been superseded by those * in the package {@code jdk.javadoc.doclet}. * For more information, see the <i>Migration Guide</i> in the documentation for that package. */ @Deprecated(since="9", forRemoval=true) @SuppressWarnings("removal") public interface ClassDoc extends ProgramElementDoc, Type { /** * Return true if this class is abstract. Return true * for all interfaces. * * @return true if this class is abstract. Return true * for all interfaces. */ boolean isAbstract(); /** * Return true if this class implements or interface extends * {@code java.io.Serializable}. * * Since {@code java.io.Externalizable} extends * {@code java.io.Serializable}, * Externalizable objects are also Serializable. * * @return true if this class implements or interface extends * {@code java.io.Serializable}. */ boolean isSerializable(); /** * Return true if this class implements or interface extends * {@code java.io.Externalizable}. * * @return true if this class implements or interface extends * {@code java.io.Externalizable}. */ boolean isExternalizable(); /** * Return the serialization methods for this class or * interface. * * @return an array of MethodDoc objects that represents * the serialization methods for this class or interface. */ MethodDoc[] serializationMethods(); /** * Return the Serializable fields of this class or interface. * <p> * Return either a list of default fields documented by * {@code serial} tag<br> * or return a single {@code FieldDoc} for * {@code serialPersistentField} member. * There should be a {@code serialField} tag for * each Serializable field defined by an {@code ObjectStreamField} * array component of {@code serialPersistentField}. * * @return an array of {@code FieldDoc} objects for the Serializable * fields of this class or interface. * * @see #definesSerializableFields() * @see SerialFieldTag */ FieldDoc[] serializableFields(); /** * Return true if Serializable fields are explicitly defined with * the special class member {@code serialPersistentFields}. * * @return true if Serializable fields are explicitly defined with * the special class member {@code serialPersistentFields}. * * @see #serializableFields() * @see SerialFieldTag */ boolean definesSerializableFields(); /** * Return the superclass of this class. Return null if this is an * interface. * * <p> <i>This method cannot accommodate certain generic type constructs. * The {@code superclassType} method should be used instead.</i> * * @return the ClassDoc for the superclass of this class, null if * there is no superclass. * @see #superclassType */ ClassDoc superclass(); /** * Return the superclass of this class. Return null if this is an * interface. A superclass is represented by either a * {@code ClassDoc} or a {@code ParametrizedType}. * * @return the superclass of this class, or null if there is no superclass. * @since 1.5 */ Type superclassType(); /** * Test whether this class is a subclass of the specified class. * If this is an interface, return false for all classes except * {@code java.lang.Object} (we must keep this unexpected * behavior for compatibility reasons). * * @param cd the candidate superclass. * @return true if cd is a superclass of this class. */ boolean subclassOf(ClassDoc cd); /** * Return interfaces implemented by this class or interfaces extended * by this interface. Includes only directly-declared interfaces, not * inherited interfaces. * Return an empty array if there are no interfaces. * * <p> <i>This method cannot accommodate certain generic type constructs. * The {@code interfaceTypes} method should be used instead.</i> * * @return an array of ClassDoc objects representing the interfaces. * @see #interfaceTypes */ ClassDoc[] interfaces(); /** * Return interfaces implemented by this class or interfaces extended * by this interface. Includes only directly-declared interfaces, not * inherited interfaces. * Return an empty array if there are no interfaces. * * @return an array of interfaces, each represented by a * {@code ClassDoc} or a {@code ParametrizedType}. * @since 1.5 */ Type[] interfaceTypes(); /** * Return the formal type parameters of this class or interface. * Return an empty array if there are none. * * @return the formal type parameters of this class or interface. * @since 1.5 */ TypeVariable[] typeParameters(); /** * Return the type parameter tags of this class or interface. * Return an empty array if there are none. * * @return the type parameter tags of this class or interface. * @since 1.5 */ ParamTag[] typeParamTags(); /** * Return * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">included</a> * fields in this class or interface. * Excludes enum constants if this is an enum type. * * @return an array of FieldDoc objects representing the included * fields in this class or interface. */ FieldDoc[] fields(); /** * Return fields in this class or interface, filtered to the specified * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">access * modifier option</a>. * Excludes enum constants if this is an enum type. * * @param filter Specify true to filter according to the specified access * modifier option. * Specify false to include all fields regardless of * access modifier option. * @return an array of FieldDoc objects representing the included * fields in this class or interface. */ FieldDoc[] fields(boolean filter); /** * Return the enum constants if this is an enum type. * Return an empty array if there are no enum constants, or if * this is not an enum type. * * @return the enum constants if this is an enum type. */ FieldDoc[] enumConstants(); /** * Return * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">included</a> * methods in this class or interface. * Same as {@code methods(true)}. * * @return an array of MethodDoc objects representing the included * methods in this class or interface. Does not include * constructors or annotation type elements. */ MethodDoc[] methods(); /** * Return methods in this class or interface, filtered to the specified * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">access * modifier option</a>. Does not include constructors or annotation * type elements. * * @param filter Specify true to filter according to the specified access * modifier option. * Specify false to include all methods regardless of * access modifier option. * * @return an array of MethodDoc objects representing the included * methods in this class or interface. */ MethodDoc[] methods(boolean filter); /** * Return * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">included</a> * constructors in this class. An array containing the default * no-arg constructor is returned if no other constructors exist. * Return empty array if this is an interface. * * @return an array of ConstructorDoc objects representing the included * constructors in this class. */ ConstructorDoc[] constructors(); /** * Return constructors in this class, filtered to the specified * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">access * modifier option</a>. Return an array containing the default * no-arg constructor if no other constructors exist. * * @param filter Specify true to filter according to the specified access * modifier option. * Specify false to include all constructors regardless of * access modifier option. * @return an array of ConstructorDoc objects representing the included * constructors in this class. */ ConstructorDoc[] constructors(boolean filter); /** * Return * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">included</a> * nested classes and interfaces within this class or interface. * This includes both static and non-static nested classes. * (This method should have been named {@code nestedClasses()}, * as inner classes are technically non-static.) Anonymous and local classes * or interfaces are not included. * * @return an array of ClassDoc objects representing the included classes * and interfaces defined in this class or interface. */ ClassDoc[] innerClasses(); /** * Return nested classes and interfaces within this class or interface * filtered to the specified * <a href="{@docRoot}/jdk.javadoc/com/sun/javadoc/package-summary.html#included">access * modifier option</a>. * This includes both static and non-static nested classes. * Anonymous and local classes are not included. * * @param filter Specify true to filter according to the specified access * modifier option. * Specify false to include all nested classes regardless of * access modifier option. * @return a filtered array of ClassDoc objects representing the included * classes and interfaces defined in this class or interface. */ ClassDoc[] innerClasses(boolean filter); /** * Find the specified class or interface within the context of this class doc. * Search order: 1) qualified name, 2) nested in this class or interface, * 3) in this package, 4) in the class imports, 5) in the package imports. * Return the ClassDoc if found, null if not found. * @param className Specify the class name to find as a String. * @return the ClassDoc if found, null if not found. */ ClassDoc findClass(String className); /** * Get the list of classes and interfaces declared as imported. * These are called "single-type-import declarations" in * <cite>The Java™ Language Specification</cite>. * * @return an array of ClassDoc representing the imported classes. * * @deprecated Import declarations are implementation details that * should not be exposed here. In addition, not all imported * classes are imported through single-type-import declarations. */ @Deprecated(since="9", forRemoval=true) ClassDoc[] importedClasses(); /** * Get the list of packages declared as imported. * These are called "type-import-on-demand declarations" in * <cite>The Java™ Language Specification</cite>. * * @return an array of PackageDoc representing the imported packages. * * @deprecated Import declarations are implementation details that * should not be exposed here. In addition, this method's * return type does not allow for all type-import-on-demand * declarations to be returned. */ @Deprecated(since="9", forRemoval=true) PackageDoc[] importedPackages(); }
⏎ com/sun/javadoc/ClassDoc.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, 70709👍, 0💬
Popular Posts:
commons-net-1.4.1.jar is the JAR file for Apache Commons Net 1.4.1, which implements the client side...
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...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
How to download and install ojdbc7.jar for Oracle 12c R1? ojdbc8.jar for Oracle 12c R1 is a Java 7 a...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....