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

Tue, 09 Oct 2012 19:10:00 -0700

author
jjg
date
Tue, 09 Oct 2012 19:10:00 -0700
changeset 1357
c75be5bc5283
parent 798
4868a36f6fd8
child 1358
fc123bdeddb8
permissions
-rw-r--r--

8000663: clean up langtools imports
Reviewed-by: darcy

     1 /*
     2  * Copyright (c) 2003, 2010, 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 enum constant output.
    33  *
    34  * This code is not part of an API.
    35  * It is implementation that is subject to change.
    36  * Do not use it as an API
    37  *
    38  * @author Jamie Ho
    39  * @author Bhavesh Patel (Modified)
    40  * @since 1.5
    41  */
    43 public interface EnumConstantWriter {
    45     /**
    46      * Get the enum constants details tree header.
    47      *
    48      * @param classDoc the class being documented
    49      * @param memberDetailsTree the content tree representing member details
    50      * @return content tree for the enum constants details header
    51      */
    52     public Content getEnumConstantsDetailsTreeHeader(ClassDoc classDoc,
    53             Content memberDetailsTree);
    55     /**
    56      * Get the enum constants documentation tree header.
    57      *
    58      * @param enumConstant the enum constant being documented
    59      * @param enumConstantDetailsTree the content tree representing enum constant details
    60      * @return content tree for the enum constant documentation header
    61      */
    62     public Content getEnumConstantsTreeHeader(FieldDoc enumConstant,
    63             Content enumConstantsDetailsTree);
    65     /**
    66      * Get the signature for the given enum constant.
    67      *
    68      * @param enumConstant the enum constant being documented
    69      * @return content tree for the enum constant signature
    70      */
    71     public Content getSignature(FieldDoc enumConstant);
    73     /**
    74      * Add the deprecated output for the given enum constant.
    75      *
    76      * @param enumConstant the enum constant being documented
    77      * @param enumConstantsTree content tree to which the deprecated information will be added
    78      */
    79     public void addDeprecated(FieldDoc enumConstant, Content enumConstantsTree);
    81     /**
    82      * Add the comments for the given enum constant.
    83      *
    84      * @param enumConstant the enum constant being documented
    85      * @param enumConstantsTree the content tree to which the comments will be added
    86      */
    87     public void addComments(FieldDoc enumConstant, Content enumConstantsTree);
    89     /**
    90      * Add the tags for the given enum constant.
    91      *
    92      * @param enumConstant the enum constant being documented
    93      * @param enumConstantsTree the content tree to which the tags will be added
    94      */
    95     public void addTags(FieldDoc enumConstant, Content enumConstantsTree);
    97     /**
    98      * Get the enum constants details tree.
    99      *
   100      * @param memberDetailsTree the content tree representing member details
   101      * @return content tree for the enum constant details
   102      */
   103     public Content getEnumConstantsDetails(Content memberDetailsTree);
   105     /**
   106      * Get the enum constants documentation.
   107      *
   108      * @param enumConstantsTree the content tree representing enum constants documentation
   109      * @param isLastContent true if the content to be added is the last content
   110      * @return content tree for the enum constants documentation
   111      */
   112     public Content getEnumConstants(Content enumConstantsTree, boolean isLastContent);
   114     /**
   115      * Close the writer.
   116      */
   117     public void close() throws IOException;
   118 }

mercurial