langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/SerializedFormWriterImpl.java
changeset 45417 f7479ee8de69
parent 42277 2668b0bc7ad7
equal deleted inserted replaced
45416:0d8bb33bdfa7 45417:f7479ee8de69
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 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
    34 import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTag;
    34 import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTag;
    35 import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree;
    35 import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree;
    36 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
    36 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
    37 import jdk.javadoc.internal.doclets.toolkit.Content;
    37 import jdk.javadoc.internal.doclets.toolkit.Content;
    38 import jdk.javadoc.internal.doclets.toolkit.SerializedFormWriter;
    38 import jdk.javadoc.internal.doclets.toolkit.SerializedFormWriter;
    39 import jdk.javadoc.internal.doclets.toolkit.SerializedFormWriter.SerialFieldWriter;
       
    40 import jdk.javadoc.internal.doclets.toolkit.SerializedFormWriter.SerialMethodWriter;
       
    41 import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
    39 import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
    42 import jdk.javadoc.internal.doclets.toolkit.util.DocPaths;
    40 import jdk.javadoc.internal.doclets.toolkit.util.DocPaths;
    43 
    41 
    44 /**
    42 /**
    45  * Generate the Serialized Form Information Page.
    43  * Generate the Serialized Form Information Page.
    62     private HtmlTree mainTree = HtmlTree.MAIN();
    60     private HtmlTree mainTree = HtmlTree.MAIN();
    63 
    61 
    64     /**
    62     /**
    65      * @param configuration the configuration data for the doclet
    63      * @param configuration the configuration data for the doclet
    66      */
    64      */
    67     public SerializedFormWriterImpl(ConfigurationImpl configuration) {
    65     public SerializedFormWriterImpl(HtmlConfiguration configuration) {
    68         super(configuration, DocPaths.SERIALIZED_FORM);
    66         super(configuration, DocPaths.SERIALIZED_FORM);
    69         visibleClasses = configuration.getIncludedTypeElements();
    67         visibleClasses = configuration.getIncludedTypeElements();
    70     }
    68     }
    71 
    69 
    72     /**
    70     /**