src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlWriter.java

changeset 1381
23fe1a96bc0f
parent 1372
78962d89f283
child 1383
b980e8e6aabf
equal deleted inserted replaced
1380:a65971893c50 1381:23fe1a96bc0f
147 /** 147 /**
148 * Constructor. 148 * Constructor.
149 * 149 *
150 * @param path The directory path to be created for this file 150 * @param path The directory path to be created for this file
151 * or null if none to be created. 151 * or null if none to be created.
152 * @param filename File Name to which the PrintWriter will
153 * do the Output.
154 * @exception IOException Exception raised by the FileWriter is passed on 152 * @exception IOException Exception raised by the FileWriter is passed on
155 * to next level. 153 * to next level.
156 * @exception UnsupportedEncodingException Exception raised by the 154 * @exception UnsupportedEncodingException Exception raised by the
157 * OutputStreamWriter is passed on to next level. 155 * OutputStreamWriter is passed on to next level.
158 */ 156 */
159 public HtmlWriter(Configuration configuration,DocPath path) 157 public HtmlWriter(Configuration configuration, DocPath path)
160 throws IOException, UnsupportedEncodingException { 158 throws IOException, UnsupportedEncodingException {
161 writer = Util.genWriter(configuration, path); 159 writer = Util.genWriter(configuration, path);
162 this.configuration = configuration; 160 this.configuration = configuration;
163 this.memberDetailsListPrinted = false; 161 this.memberDetailsListPrinted = false;
164 packageTableHeader = new String[] { 162 packageTableHeader = new String[] {

mercurial