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

changeset 766
90af8d87741f
parent 554
9d9f26857129
child 798
4868a36f6fd8
     1.1 --- a/src/share/classes/com/sun/tools/doclets/internal/toolkit/NestedClassWriter.java	Tue Nov 30 09:38:48 2010 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/internal/toolkit/NestedClassWriter.java	Wed Dec 01 11:02:38 2010 -0800
     1.3 @@ -26,7 +26,6 @@
     1.4  package com.sun.tools.doclets.internal.toolkit;
     1.5  
     1.6  import java.io.*;
     1.7 -import com.sun.javadoc.*;
     1.8  
     1.9  /**
    1.10   * The interface for writing class output.
    1.11 @@ -36,59 +35,13 @@
    1.12   * Do not use it as an API
    1.13   *
    1.14   * @author Jamie Ho
    1.15 + * @author Bhavesh Patel (Modified)
    1.16   * @since 1.5
    1.17   */
    1.18  
    1.19  public interface NestedClassWriter {
    1.20  
    1.21      /**
    1.22 -     * Write the classes summary header for the given class.
    1.23 -     *
    1.24 -     * @param nestedClass the class the summary belongs to.
    1.25 -     */
    1.26 -    public void writeNestedClassSummaryHeader(ClassDoc nestedClass);
    1.27 -
    1.28 -    /**
    1.29 -     * Write the class summary for the given class and class.
    1.30 -     *
    1.31 -     * @param classDoc the class the summary belongs to.
    1.32 -     * @param nestedClass the nested class that I am summarizing.
    1.33 -     */
    1.34 -    public void writeNestedClassSummary(ClassDoc classDoc, ClassDoc nestedClass);
    1.35 -
    1.36 -    /**
    1.37 -     * Write the classes summary footer for the given class.
    1.38 -     *
    1.39 -     * @param nestedClass the class the summary belongs to.
    1.40 -     */
    1.41 -    public void writeNestedClassSummaryFooter(ClassDoc nestedClass);
    1.42 -
    1.43 -    /**
    1.44 -     * Write the inherited classes summary header for the given class.
    1.45 -     *
    1.46 -     * @param nestedClass the class the summary belongs to.
    1.47 -     */
    1.48 -    public void writeInheritedNestedClassSummaryHeader(ClassDoc nestedClass);
    1.49 -
    1.50 -    /**
    1.51 -     * Write the inherited nested class summary for the given class and nested
    1.52 -     * class.
    1.53 -     *
    1.54 -     * @param classDoc the class the inherited nested class belongs to.
    1.55 -     * @param nestedClass the inherited nested class that I am summarizing.
    1.56 -     * @param isFirst true if this is the first member in the list.
    1.57 -     */
    1.58 -    public void writeInheritedNestedClassSummary(ClassDoc classDoc,
    1.59 -            ClassDoc nestedClass, boolean isFirst);
    1.60 -
    1.61 -    /**
    1.62 -     * Write the inherited classes summary footer for the given class.
    1.63 -     *
    1.64 -     * @param nestedClass the class the summary belongs to.
    1.65 -     */
    1.66 -    public void writeInheritedNestedClassSummaryFooter(ClassDoc nestedClass);
    1.67 -
    1.68 -    /**
    1.69       * Close the writer.
    1.70       */
    1.71      public void close() throws IOException;

mercurial