langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/ModuleSummaryWriter.java
changeset 40587 1c355ea550ed
parent 40303 96a1226aca18
equal deleted inserted replaced
40519:e17429a7e843 40587:1c355ea550ed
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 package jdk.javadoc.internal.doclets.toolkit;
    26 package jdk.javadoc.internal.doclets.toolkit;
    27 
    27 
    28 import java.io.*;
    28 import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
    29 import java.util.Set;
       
    30 
       
    31 import javax.lang.model.element.PackageElement;
       
    32 
    29 
    33 /**
    30 /**
    34  * The interface for writing module summary output.
    31  * The interface for writing module summary output.
    35  *
    32  *
    36  *  <p><b>This is NOT part of any supported API.
    33  *  <p><b>This is NOT part of any supported API.
   128 
   125 
   129     /**
   126     /**
   130      * Print the module summary document.
   127      * Print the module summary document.
   131      *
   128      *
   132      * @param contentTree the content tree that will be printed
   129      * @param contentTree the content tree that will be printed
       
   130      * @throws DocFileIOException if there is a problem while writing the document
   133      */
   131      */
   134     public abstract void printDocument(Content contentTree) throws IOException;
   132     public abstract void printDocument(Content contentTree) throws DocFileIOException;
   135 }
   133 }