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

changeset 1372
78962d89f283
parent 1359
25e14ad23cef
child 1410
bfec2a1cc869
equal deleted inserted replaced
1366:12cf6bfd8c05 1372:78962d89f283
54 * The index of all the members with unicode character. 54 * The index of all the members with unicode character.
55 */ 55 */
56 protected IndexBuilder indexbuilder; 56 protected IndexBuilder indexbuilder;
57 57
58 /** 58 /**
59 * This constructor will be used by {@link SplitIndexWriter}. Initialises 59 * This constructor will be used by {@link SplitIndexWriter}. Initializes
60 * path to this file and relative path from this file. 60 * path to this file and relative path from this file.
61 * 61 *
62 * @param configuration The current configuration
62 * @param path Path to the file which is getting generated. 63 * @param path Path to the file which is getting generated.
63 * @param filename Name of the file which is getting genrated.
64 * @param relpath Relative path from this file to the current directory.
65 * @param indexbuilder Unicode based Index from {@link IndexBuilder} 64 * @param indexbuilder Unicode based Index from {@link IndexBuilder}
66 */ 65 */
67 protected AbstractIndexWriter(ConfigurationImpl configuration, 66 protected AbstractIndexWriter(ConfigurationImpl configuration,
68 String path, String filename, 67 DocPath path,
69 String relpath, IndexBuilder indexbuilder) 68 IndexBuilder indexbuilder)
70 throws IOException { 69 throws IOException {
71 super(configuration, path, filename, relpath); 70 super(configuration, path);
72 this.indexbuilder = indexbuilder;
73 }
74
75 /**
76 * This Constructor will be used by {@link SingleIndexWriter}.
77 *
78 * @param filename Name of the file which is getting genrated.
79 * @param indexbuilder Unicode based Index form {@link IndexBuilder}
80 */
81 protected AbstractIndexWriter(ConfigurationImpl configuration,
82 String filename, IndexBuilder indexbuilder)
83 throws IOException {
84 super(configuration, filename);
85 this.indexbuilder = indexbuilder; 71 this.indexbuilder = indexbuilder;
86 } 72 }
87 73
88 /** 74 /**
89 * Get the index label for navigation bar. 75 * Get the index label for navigation bar.

mercurial