langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/ClassWriter.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 javax.lang.model.element.TypeElement;
    28 import javax.lang.model.element.TypeElement;
       
    29 
       
    30 import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
    31 
    31 
    32 /**
    32 /**
    33  * The interface for writing class output.
    33  * The interface for writing class output.
    34  *
    34  *
    35  *  <p><b>This is NOT part of any supported API.
    35  *  <p><b>This is NOT part of any supported API.
   191 
   191 
   192     /**
   192     /**
   193      * Print the document.
   193      * Print the document.
   194      *
   194      *
   195      * @param contentTree content tree that will be printed as a document
   195      * @param contentTree content tree that will be printed as a document
   196      */
   196      * @throws DocFileIOException if there is a problem while writing the document
   197     public void printDocument(Content contentTree) throws IOException;
   197      */
       
   198     public void printDocument(Content contentTree) throws DocFileIOException;
   198 
   199 
   199     /**
   200     /**
   200      * Return the TypeElement being documented.
   201      * Return the TypeElement being documented.
   201      *
   202      *
   202      * @return the TypeElement being documented.
   203      * @return the TypeElement being documented.