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

Mon, 21 Jan 2013 00:45:35 -0500

author
bpatel
date
Mon, 21 Jan 2013 00:45:35 -0500
changeset 1568
5f0731e4e5e6
parent 1359
25e14ad23cef
child 2035
a2a5ad0853ed
permissions
-rw-r--r--

8006124: javadoc/doclet should be updated to support profiles
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2003, 2012, 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;
    28 import java.io.*;
    29 import com.sun.javadoc.*;
    31 /**
    32  * The interface for writing annotation type required member output.
    33  *
    34  *  <p><b>This is NOT part of any supported API.
    35  *  If you write code that depends on this, you do so at your own risk.
    36  *  This code and its internal interfaces are subject to change or
    37  *  deletion without notice.</b>
    38  *
    39  *
    40  * @author Jamie Ho
    41  * @author Bhavesh Patel (Modified)
    42  * @since 1.5
    43  */
    45 public interface AnnotationTypeRequiredMemberWriter {
    47     /**
    48      * Add the annotation type details tree header.
    49      *
    50      * @param classDoc the annotation type being documented
    51      * @param memberDetailsTree the content tree representing member details
    52      */
    53     public void addAnnotationDetailsTreeHeader(ClassDoc classDoc,
    54             Content memberDetailsTree);
    56     /**
    57      * Get the annotation type documentation tree header.
    58      *
    59      * @param member the annotation type being documented
    60      * @param annotationDetailsTree the content tree representing annotation type details
    61      * @return content tree for the annotation type documentation header
    62      */
    63     public Content getAnnotationDocTreeHeader(MemberDoc member,
    64             Content annotationDetailsTree);
    66     /**
    67      * Get the annotation type details tree.
    68      *
    69      * @param annotationDetailsTree the content tree representing annotation type details
    70      * @return content tree for the annotation type details
    71      */
    72     public Content getAnnotationDetails(Content annotationDetailsTree);
    74     /**
    75      * Get the annotation type documentation.
    76      *
    77      * @param annotationDocTree the content tree representing annotation type documentation
    78      * @param isLastContent true if the content to be added is the last content
    79      * @return content tree for the annotation type documentation
    80      */
    81     public Content getAnnotationDoc(Content annotationDocTree, boolean isLastContent);
    83     /**
    84      * Get the signature for the given member.
    85      *
    86      * @param member the member being documented
    87      * @return content tree for the annotation type signature
    88      */
    89     public Content getSignature(MemberDoc member);
    91     /**
    92      * Add the deprecated output for the given member.
    93      *
    94      * @param member the member being documented
    95      * @param annotationDocTree content tree to which the deprecated information will be added
    96      */
    97     public void addDeprecated(MemberDoc member, Content annotationDocTree);
    99     /**
   100      * Add the comments for the given member.
   101      *
   102      * @param member the member being documented
   103      * @param annotationDocTree the content tree to which the comments will be added
   104      */
   105     public void addComments(MemberDoc member, Content annotationDocTree);
   107     /**
   108      * Add the tags for the given member.
   109      *
   110      * @param member the member being documented
   111      * @param annotationDocTree the content tree to which the tags will be added
   112      */
   113     public void addTags(MemberDoc member, Content annotationDocTree);
   115     /**
   116      * Close the writer.
   117      */
   118     public void close() throws IOException;
   119 }

mercurial