src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocFinder.java

Mon, 02 May 2011 02:13:02 -0700

author
bpatel
date
Mon, 02 May 2011 02:13:02 -0700
changeset 995
62bc3775d5bb
parent 554
9d9f26857129
child 1357
c75be5bc5283
permissions
-rw-r--r--

6492694: @deprecated tag doesn't work in package-info files.
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.doclets.internal.toolkit.util;
    28 import com.sun.javadoc.*;
    29 import com.sun.tools.doclets.internal.toolkit.taglets.*;
    30 import java.util.*;
    32 /**
    33  * Search for the requested documentation.  Inherit documentation if necessary.
    34  *
    35  * @author Jamie Ho
    36  * @since 1.5
    37  */
    38 public class DocFinder {
    40     /**
    41      * The class that encapsulates the input.
    42      */
    43     public static class Input {
    44         /**
    45          * The method to search documentation from.
    46          */
    47         public MethodDoc method = null;
    48         /**
    49          * The taglet to search for documentation on behalf of. Null if we want
    50          * to search for overall documentation.
    51          */
    52         public InheritableTaglet taglet = null;
    54         /**
    55          * The id of the tag to retrieve documentation for.
    56          */
    57         public String tagId = null;
    59         /**
    60          * The tag to retrieve documentation for.  This is only used for the
    61          * inheritDoc tag.
    62          */
    63         public Tag tag = null;
    65         /**
    66          * True if we only want to search for the first sentence.
    67          */
    68         public boolean isFirstSentence = false;
    70         /**
    71          * True if we are looking for documentation to replace the inheritDocTag.
    72          */
    73         public boolean isInheritDocTag = false;
    75         /**
    76          * Used to distinguish between type variable param tags and regular
    77          * param tags.
    78          */
    79         public boolean isTypeVariableParamTag = false;
    81         public Input() {}
    83         public Input(MethodDoc method, InheritableTaglet taglet, Tag tag,
    84                 boolean isFirstSentence, boolean isInheritDocTag) {
    85             this.method = method;
    86             this.taglet = taglet;
    87             this.tag = tag;
    88             this.isFirstSentence = isFirstSentence;
    89             this.isInheritDocTag = isInheritDocTag;
    90         }
    92         public Input(MethodDoc method, InheritableTaglet taglet, String tagId) {
    93             this.method = method;
    94             this.taglet = taglet;
    95             this.tagId = tagId;
    96         }
    98         public Input(MethodDoc method, InheritableTaglet taglet, String tagId,
    99             boolean isTypeVariableParamTag) {
   100             this.method = method;
   101             this.taglet = taglet;
   102             this.tagId = tagId;
   103             this.isTypeVariableParamTag = isTypeVariableParamTag;
   104         }
   106         public Input(MethodDoc method, InheritableTaglet taglet) {
   107             this.method = method;
   108             this.taglet = taglet;
   109         }
   111         public Input(MethodDoc method) {
   112             this.method = method;
   113         }
   115         public Input(MethodDoc method, boolean isFirstSentence) {
   116             this.method = method;
   117             this.isFirstSentence = isFirstSentence;
   118         }
   120         public Input copy() {
   121             Input clone = new Input();
   122             clone.method = this.method;
   123             clone.taglet = this.taglet;
   124             clone.tagId = this.tagId;
   125             clone.tag = this.tag;
   126             clone.isFirstSentence = this.isFirstSentence;
   127             clone.isInheritDocTag = this.isInheritDocTag;
   128             clone.isTypeVariableParamTag = this.isTypeVariableParamTag;
   129             return clone;
   131         }
   132     }
   134     /**
   135      * The class that encapsulates the output.
   136      */
   137     public static class Output {
   138         /**
   139          * The tag that holds the documentation.  Null if documentation
   140          * is not held by a tag.
   141          */
   142         public Tag holderTag;
   144         /**
   145          * The Doc object that holds the documentation.
   146          */
   147         public Doc holder;
   149         /**
   150          * The inherited documentation.
   151          */
   152         public Tag[] inlineTags = new Tag[] {};
   154         /**
   155          * False if documentation could not be inherited.
   156          */
   157         public boolean isValidInheritDocTag = true;
   159         /**
   160          * When automatically inheriting throws tags, you sometime must inherit
   161          * more than one tag.  For example if the method declares that it throws
   162          * IOException and the overidden method has throws tags for IOException and
   163          * ZipException, both tags would be inherited because ZipException is a
   164          * subclass of IOException.  This subclass of DocFinder.Output allows
   165          * multiple tag inheritence.
   166          */
   167         public List<Tag> tagList  = new ArrayList<Tag>();
   168     }
   170     /**
   171      * Search for the requested comments in the given method.  If it does not
   172      * have comments, return documentation from the overriden method if possible.
   173      * If the overriden method does not exist or does not have documentation to
   174      * inherit, search for documentation to inherit from implemented methods.
   175      *
   176      * @param input the input object used to perform the search.
   177      *
   178      * @return an Output object representing the documentation that was found.
   179      */
   180     public static Output search(Input input) {
   181         Output output = new Output();
   182         if (input.isInheritDocTag) {
   183             //Do nothing because "method" does not have any documentation.
   184             //All it has it {@inheritDoc}.
   185         } else if (input.taglet == null) {
   186             //We want overall documentation.
   187             output.inlineTags = input.isFirstSentence ?
   188                 input.method.firstSentenceTags() :
   189                 input.method.inlineTags();
   190             output.holder = input.method;
   191         } else {
   192             input.taglet.inherit(input, output);
   193         }
   195         if (output.inlineTags != null && output.inlineTags.length > 0) {
   196             return output;
   197         }
   198         output.isValidInheritDocTag = false;
   199         Input inheritedSearchInput = input.copy();
   200         inheritedSearchInput.isInheritDocTag = false;
   201         if (input.method.overriddenMethod() != null) {
   202             inheritedSearchInput.method = input.method.overriddenMethod();
   203             output = search(inheritedSearchInput);
   204             output.isValidInheritDocTag = true;
   205             if (output != null && output.inlineTags.length > 0) {
   206                 return output;
   207             }
   208         }
   209         //NOTE:  When we fix the bug where ClassDoc.interfaceTypes() does
   210         //       not pass all implemented interfaces, we will use the
   211         //       appropriate method here.
   212         MethodDoc[] implementedMethods =
   213             (new ImplementedMethods(input.method, null)).build(false);
   214         for (int i = 0; i < implementedMethods.length; i++) {
   215             inheritedSearchInput.method = implementedMethods[i];
   216             output = search(inheritedSearchInput);
   217             output.isValidInheritDocTag = true;
   218             if (output != null && output.inlineTags.length > 0) {
   219                 return output;
   220             }
   221         }
   222         return output;
   223     }
   224 }

mercurial