src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/FrameOutputWriter.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 21,38 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package com.sun.tools.doclets.formats.html; import java.io.*; ! import com.sun.tools.doclets.formats.html.markup.*; ! import com.sun.tools.doclets.internal.toolkit.*; ! import com.sun.tools.doclets.internal.toolkit.util.*; /** * Generate the documentation in the Html "frame" format in the browser. The * generated documentation will have two or three frames depending upon the * number of packages on the command line. In general there will be three frames * in the output, a left-hand top frame will have a list of all packages with --- 21,43 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.javadoc.internal.doclets.formats.html; import java.io.*; ! import jdk.javadoc.internal.doclets.formats.html.markup.HtmlStyle; ! import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTag; ! import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree; ! import jdk.javadoc.internal.doclets.toolkit.Content; ! import jdk.javadoc.internal.doclets.toolkit.util.DocPath; ! import jdk.javadoc.internal.doclets.toolkit.util.DocPaths; ! import jdk.javadoc.internal.doclets.toolkit.util.DocletAbortException; + /** * Generate the documentation in the Html "frame" format in the browser. The * generated documentation will have two or three frames depending upon the * number of packages on the command line. In general there will be three frames * in the output, a left-hand top frame will have a list of all packages with
*** 56,69 **** int noOfPackages; /** * Constructor to construct FrameOutputWriter object. * * @param filename File to be generated. */ ! public FrameOutputWriter(ConfigurationImpl configuration, ! DocPath filename) throws IOException { super(configuration, filename); noOfPackages = configuration.packages.size(); } /** --- 61,75 ---- int noOfPackages; /** * Constructor to construct FrameOutputWriter object. * + * @param configuration for this run * @param filename File to be generated. + * @throws java.io.IOException */ ! public FrameOutputWriter(ConfigurationImpl configuration, DocPath filename) throws IOException { super(configuration, filename); noOfPackages = configuration.packages.size(); } /**