langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/PackageSummaryWriter.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.*;
       
    29 
       
    30 import java.util.List;
    28 import java.util.List;
    31 import java.util.SortedSet;
    29 import java.util.SortedSet;
    32 
    30 
    33 import javax.lang.model.element.TypeElement;
    31 import javax.lang.model.element.TypeElement;
       
    32 
       
    33 import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
    34 
    34 
    35 /**
    35 /**
    36  * The interface for writing package summary output.
    36  * The interface for writing package summary output.
    37  *
    37  *
    38  *  <p><b>This is NOT part of any supported API.
    38  *  <p><b>This is NOT part of any supported API.
   116 
   116 
   117     /**
   117     /**
   118      * Print the package summary document.
   118      * Print the package summary document.
   119      *
   119      *
   120      * @param contentTree the content tree that will be printed
   120      * @param contentTree the content tree that will be printed
       
   121      * @throws DocFileIOException if there is a problem while writing the document
   121      */
   122      */
   122     public abstract void printDocument(Content contentTree) throws IOException;
   123     public abstract void printDocument(Content contentTree) throws DocFileIOException;
   123 
   124 
   124 }
   125 }