src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/TagletWriter.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 21,36 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package com.sun.tools.doclets.internal.toolkit.taglets; ! import com.sun.javadoc.*; ! import com.sun.tools.doclets.internal.toolkit.*; ! import com.sun.tools.doclets.internal.toolkit.util.*; /** * The interface for the taglet writer. * * <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. --- 21,46 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.javadoc.internal.doclets.toolkit.taglets; ! import java.util.List; + import javax.lang.model.element.Element; + import javax.lang.model.element.VariableElement; + import javax.lang.model.type.TypeMirror; + + import com.sun.source.doctree.DocTree; + import jdk.javadoc.internal.doclets.toolkit.Configuration; + import jdk.javadoc.internal.doclets.toolkit.Content; + import jdk.javadoc.internal.doclets.toolkit.taglets.Taglet.UnsupportedTagletOperationException; + import jdk.javadoc.internal.doclets.toolkit.util.CommentHelper; + import jdk.javadoc.internal.doclets.toolkit.util.MessageRetriever; + import jdk.javadoc.internal.doclets.toolkit.util.Utils; + /** * The interface for the taglet writer. * * <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.
*** 58,79 **** public abstract Content getOutputInstance(); /** * Return the output for a {@code {@code ...}} tag. * * @param tag the tag. * @return the output of the taglet. */ ! protected abstract Content codeTagOutput(Tag tag); /** * Return the output for a {@index...} tag. * * @param tag the tag. * @return the output of the taglet. */ ! protected abstract Content indexTagOutput(Tag tag); /** * Returns the output for the DocRoot inline tag. * @return the output for the DocRoot inline tag. */ --- 68,90 ---- public abstract Content getOutputInstance(); /** * Return the output for a {@code {@code ...}} tag. * + * @param element * @param tag the tag. * @return the output of the taglet. */ ! protected abstract Content codeTagOutput(Element element, DocTree tag); /** * Return the output for a {@index...} tag. * * @param tag the tag. * @return the output of the taglet. */ ! protected abstract Content indexTagOutput(Element element, DocTree tag); /** * Returns the output for the DocRoot inline tag. * @return the output for the DocRoot inline tag. */
*** 80,101 **** protected abstract Content getDocRootOutput(); /** * Return the deprecated tag output. * ! * @param doc the doc to write deprecated documentation for. * @return the output of the deprecated tag. */ ! protected abstract Content deprecatedTagOutput(Doc doc); /** * Return the output for a {@code {@literal ...}} tag. * * @param tag the tag. * @return the output of the taglet. */ ! protected abstract Content literalTagOutput(Tag tag); /** * Returns {@link MessageRetriever} for output purposes. * * @return {@link MessageRetriever} for output purposes. --- 91,113 ---- protected abstract Content getDocRootOutput(); /** * Return the deprecated tag output. * ! * @param element the element to write deprecated documentation for. * @return the output of the deprecated tag. */ ! protected abstract Content deprecatedTagOutput(Element element); /** * Return the output for a {@code {@literal ...}} tag. * + * @param element * @param tag the tag. * @return the output of the taglet. */ ! protected abstract Content literalTagOutput(Element element, DocTree tag); /** * Returns {@link MessageRetriever} for output purposes. * * @return {@link MessageRetriever} for output purposes.
*** 111,168 **** protected abstract Content getParamHeader(String header); /** * Return the output for param tags. * * @param paramTag the parameter to document. * @param paramName the name of the parameter. * @return the output of the param tag. */ ! protected abstract Content paramTagOutput(ParamTag paramTag, ! String paramName); /** * Return the output for property tags. * * @param propertyTag the parameter to document. * @param prefix the text with which to prefix the property name. * @return the output of the param tag. */ ! protected abstract Content propertyTagOutput(Tag propertyTag, String prefix); /** * Return the return tag output. * * @param returnTag the return tag to output. * @return the output of the return tag. */ ! protected abstract Content returnTagOutput(Tag returnTag); /** * Return the see tag output. * * @param seeTags the array of See tags. * @return the output of the see tags. */ ! protected abstract Content seeTagOutput(Doc holder, SeeTag[] seeTags); /** * Return the output for a simple tag. * * @param simpleTags the array of simple tags. * @return the output of the simple tags. */ ! protected abstract Content simpleTagOutput(Tag[] simpleTags, ! String header); /** * Return the output for a simple tag. * * @param simpleTag the simple tag. * @return the output of the simple tag. */ ! protected abstract Content simpleTagOutput(Tag simpleTag, String header); /** * Return the header for the throws tag. * * @return the header for the throws tag. --- 123,186 ---- protected abstract Content getParamHeader(String header); /** * Return the output for param tags. * + * @param element * @param paramTag the parameter to document. * @param paramName the name of the parameter. * @return the output of the param tag. */ ! protected abstract Content paramTagOutput(Element element, DocTree paramTag, String paramName); /** * Return the output for property tags. * + * @param element * @param propertyTag the parameter to document. * @param prefix the text with which to prefix the property name. * @return the output of the param tag. */ ! protected abstract Content propertyTagOutput(Element element, DocTree propertyTag, String prefix); /** * Return the return tag output. * + * @param element * @param returnTag the return tag to output. * @return the output of the return tag. */ ! protected abstract Content returnTagOutput(Element element, DocTree returnTag); /** * Return the see tag output. * + * @param holder * @param seeTags the array of See tags. * @return the output of the see tags. */ ! protected abstract Content seeTagOutput(Element holder, List<? extends DocTree> seeTags); /** * Return the output for a simple tag. * + * @param element * @param simpleTags the array of simple tags. + * @param header * @return the output of the simple tags. */ ! protected abstract Content simpleTagOutput(Element element, List<? extends DocTree> simpleTags, String header); /** * Return the output for a simple tag. * + * @param element * @param simpleTag the simple tag. + * @param header * @return the output of the simple tag. */ ! protected abstract Content simpleTagOutput(Element element, DocTree simpleTag, String header); /** * Return the header for the throws tag. * * @return the header for the throws tag.
*** 170,191 **** protected abstract Content getThrowsHeader(); /** * Return the header for the throws tag. * * @param throwsTag the throws tag. * @return the output of the throws tag. */ ! protected abstract Content throwsTagOutput(ThrowsTag throwsTag); /** * Return the output for the throws tag. * * @param throwsType the throws type. * @return the output of the throws type. */ ! protected abstract Content throwsTagOutput(Type throwsType); /** * Return the output for the value tag. * * @param field the constant field that holds the value tag. --- 188,210 ---- protected abstract Content getThrowsHeader(); /** * Return the header for the throws tag. * + * @param element * @param throwsTag the throws tag. * @return the output of the throws tag. */ ! protected abstract Content throwsTagOutput(Element element, DocTree throwsTag); /** * Return the output for the throws tag. * * @param throwsType the throws type. * @return the output of the throws type. */ ! protected abstract Content throwsTagOutput(TypeMirror throwsType); /** * Return the output for the value tag. * * @param field the constant field that holds the value tag.
*** 192,267 **** * @param constantVal the constant value to document. * @param includeLink true if we should link the constant text to the * constant field itself. * @return the output of the value tag. */ ! protected abstract Content valueTagOutput(FieldDoc field, String constantVal, boolean includeLink); /** * Given an output object, append to it the tag documentation for * the given member. * * @param tagletManager the manager that manages the taglets. ! * @param doc the Doc that we are print tags for. * @param taglets the taglets to print. * @param writer the writer that will generate the output strings. * @param output the output buffer to store the output in. */ ! public static void genTagOuput(TagletManager tagletManager, Doc doc, ! Taglet[] taglets, TagletWriter writer, Content output) { ! tagletManager.checkTags(doc, doc.tags(), false); ! tagletManager.checkTags(doc, doc.inlineTags(), true); ! Content currentOutput = null; for (Taglet taglet : taglets) { ! currentOutput = null; ! if (doc instanceof ClassDoc && taglet instanceof ParamTaglet) { //The type parameters are documented in a special section away //from the tag info, so skip here. continue; } if (taglet instanceof DeprecatedTaglet) { //Deprecated information is documented "inline", not in tag info //section. continue; } try { ! currentOutput = taglet.getTagletOutput(doc, writer); ! } catch (IllegalArgumentException e) { //The taglet does not take a member as an argument. Let's try //a single tag. ! Tag[] tags = doc.tags(taglet.getName()); ! if (tags.length > 0) { ! currentOutput = taglet.getTagletOutput(tags[0], writer); } } if (currentOutput != null) { tagletManager.seenCustomTag(taglet.getName()); output.addContent(currentOutput); } } } - /** * Given an inline tag, return its output. * @param tagletManager The taglet manager for the current doclet. * @param holderTag The tag this holds this inline tag. Null if there * is no tag that holds it. * @param inlineTag The inline tag to be documented. * @param tagletWriter The taglet writer to write the output. * @return The output of the inline tag. */ ! public static Content getInlineTagOuput(TagletManager tagletManager, ! Tag holderTag, Tag inlineTag, TagletWriter tagletWriter) { ! Taglet[] definedTags = tagletManager.getInlineCustomTaglets(); //This is a custom inline tag. for (Taglet definedTag : definedTags) { ! if (("@" + definedTag.getName()).equals(inlineTag.name())) { ! //Given a name of a seen custom tag, remove it from the // set of unseen custom tags. tagletManager.seenCustomTag(definedTag.getName()); ! Content output = definedTag.getTagletOutput( holderTag != null && definedTag.getName().equals("inheritDoc") ? holderTag : inlineTag, tagletWriter); return output; } --- 211,288 ---- * @param constantVal the constant value to document. * @param includeLink true if we should link the constant text to the * constant field itself. * @return the output of the value tag. */ ! protected abstract Content valueTagOutput(VariableElement field, String constantVal, boolean includeLink); /** * Given an output object, append to it the tag documentation for * the given member. * * @param tagletManager the manager that manages the taglets. ! * @param element the Doc that we are print tags for. * @param taglets the taglets to print. * @param writer the writer that will generate the output strings. * @param output the output buffer to store the output in. */ ! public static void genTagOutput(TagletManager tagletManager, Element element, ! List<Taglet> taglets, TagletWriter writer, Content output) { ! Utils utils = writer.configuration().utils; ! tagletManager.checkTags(utils, element, utils.getBlockTags(element), false); ! tagletManager.checkTags(utils, element, utils.getBody(element), true); for (Taglet taglet : taglets) { ! if (utils.isTypeElement(element) && taglet instanceof ParamTaglet) { //The type parameters are documented in a special section away //from the tag info, so skip here. continue; } if (taglet instanceof DeprecatedTaglet) { //Deprecated information is documented "inline", not in tag info //section. continue; } + Content currentOutput = null; try { ! currentOutput = taglet.getTagletOutput(element, writer); ! } catch (UnsupportedTagletOperationException utoe) { //The taglet does not take a member as an argument. Let's try //a single tag. ! List<? extends DocTree> tags = utils.getBlockTags(element, taglet.getName()); ! if (!tags.isEmpty()) { ! currentOutput = taglet.getTagletOutput(element, tags.get(0), writer); } } if (currentOutput != null) { tagletManager.seenCustomTag(taglet.getName()); output.addContent(currentOutput); } } } /** * Given an inline tag, return its output. + * @param holder * @param tagletManager The taglet manager for the current doclet. * @param holderTag The tag this holds this inline tag. Null if there * is no tag that holds it. * @param inlineTag The inline tag to be documented. * @param tagletWriter The taglet writer to write the output. * @return The output of the inline tag. */ ! public static Content getInlineTagOutput(Element holder, TagletManager tagletManager, ! DocTree holderTag, DocTree inlineTag, TagletWriter tagletWriter) { ! List<Taglet> definedTags = tagletManager.getInlineCustomTaglets(); ! CommentHelper ch = tagletWriter.configuration().utils.getCommentHelper(holder); ! final String inlineTagName = ch.getTagName(inlineTag); //This is a custom inline tag. for (Taglet definedTag : definedTags) { ! if ((definedTag.getName()).equals(inlineTagName)) { ! // Given a name of a seen custom tag, remove it from the // set of unseen custom tags. tagletManager.seenCustomTag(definedTag.getName()); ! Content output = definedTag.getTagletOutput(holder, holderTag != null && definedTag.getName().equals("inheritDoc") ? holderTag : inlineTag, tagletWriter); return output; }
*** 278,317 **** * @param holderTag the tag that holds the documentation. * @param tags array of text tags and inline tags (often alternating) * present in the text of interest for this doc. * @return the {@link Content} representing the comments. */ ! public abstract Content commentTagsToOutput(Tag holderTag, Tag[] tags); /** * Converts inline tags and text to TagOutput, expanding the * inline tags along the way. Called wherever text can contain * an inline tag, such as in comments or in free-form text arguments * to non-inline tags. * ! * @param holderDoc specific doc where comment resides. * @param tags array of text tags and inline tags (often alternating) * present in the text of interest for this doc. * @return the {@link Content} representing the comments. */ ! public abstract Content commentTagsToOutput(Doc holderDoc, Tag[] tags); /** * Converts inline tags and text to TagOutput, expanding the * inline tags along the way. Called wherever text can contain * an inline tag, such as in comments or in free-form text arguments * to non-inline tags. * * @param holderTag the tag that holds the documentation. ! * @param holderDoc specific doc where comment resides. * @param tags array of text tags and inline tags (often alternating) * present in the text of interest for this doc. * @param isFirstSentence true if this is the first sentence. * @return the {@link Content} representing the comments. */ ! public abstract Content commentTagsToOutput(Tag holderTag, ! Doc holderDoc, Tag[] tags, boolean isFirstSentence); /** * @return an instance of the configuration used for this doclet. */ public abstract Configuration configuration(); --- 299,338 ---- * @param holderTag the tag that holds the documentation. * @param tags array of text tags and inline tags (often alternating) * present in the text of interest for this doc. * @return the {@link Content} representing the comments. */ ! public abstract Content commentTagsToOutput(DocTree holderTag, List<? extends DocTree> tags); /** * Converts inline tags and text to TagOutput, expanding the * inline tags along the way. Called wherever text can contain * an inline tag, such as in comments or in free-form text arguments * to non-inline tags. * ! * @param holder the element where comment resides. * @param tags array of text tags and inline tags (often alternating) * present in the text of interest for this doc. * @return the {@link Content} representing the comments. */ ! public abstract Content commentTagsToOutput(Element holder, List<? extends DocTree> tags); /** * Converts inline tags and text to TagOutput, expanding the * inline tags along the way. Called wherever text can contain * an inline tag, such as in comments or in free-form text arguments * to non-inline tags. * * @param holderTag the tag that holds the documentation. ! * @param holder the element where comment resides. * @param tags array of text tags and inline tags (often alternating) * present in the text of interest for this doc. * @param isFirstSentence true if this is the first sentence. * @return the {@link Content} representing the comments. */ ! public abstract Content commentTagsToOutput(DocTree holderTag, ! Element holder, List<? extends DocTree> tags, boolean isFirstSentence); /** * @return an instance of the configuration used for this doclet. */ public abstract Configuration configuration();