src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/WriterFactory.java
changeset 48029 e9dab2492924
parent 47216 71c04702a3d5
child 48756 ce608a09a666
equal deleted inserted replaced
48028:9e022f580a9d 48029:e9dab2492924
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    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 javax.lang.model.element.Element;
    28 import javax.lang.model.element.ModuleElement;
    29 import javax.lang.model.element.ModuleElement;
    29 import javax.lang.model.element.PackageElement;
    30 import javax.lang.model.element.PackageElement;
    30 import javax.lang.model.element.TypeElement;
    31 import javax.lang.model.element.TypeElement;
    31 import javax.lang.model.type.TypeMirror;
    32 import javax.lang.model.type.TypeMirror;
    32 
    33 
   220      * Return the writer for the serialized form.
   221      * Return the writer for the serialized form.
   221      *
   222      *
   222      * @return the writer for the serialized form.
   223      * @return the writer for the serialized form.
   223      */
   224      */
   224     public SerializedFormWriter getSerializedFormWriter();
   225     public SerializedFormWriter getSerializedFormWriter();
       
   226 
       
   227     /**
       
   228      * Return the handler for doc files.
       
   229      *
       
   230      * @return the handler for the doc files.
       
   231      */
       
   232     DocFilesHandler getDocFilesHandler(Element pkg);
   225 }
   233 }