src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/PackageSummaryBuilder.java

changeset 184
905e151a185a
parent 1
9a66ca7c79fa
child 243
edd944553131
equal deleted inserted replaced
183:dbe9e82f9d25 184:905e151a185a
86 /** 86 /**
87 * {@inheritDoc} 87 * {@inheritDoc}
88 */ 88 */
89 public void invokeMethod( 89 public void invokeMethod(
90 String methodName, 90 String methodName,
91 Class[] paramClasses, 91 Class<?>[] paramClasses,
92 Object[] params) 92 Object[] params)
93 throws Exception { 93 throws Exception {
94 if (DEBUG) { 94 if (DEBUG) {
95 configuration.root.printError( 95 configuration.root.printError(
96 "DEBUG: " + this.getClass().getName() + "." + methodName); 96 "DEBUG: " + this.getClass().getName() + "." + methodName);
118 } 118 }
119 119
120 /** 120 /**
121 * Build the package documentation. 121 * Build the package documentation.
122 */ 122 */
123 public void buildPackageDoc(List elements) throws Exception { 123 public void buildPackageDoc(List<?> elements) throws Exception {
124 build(elements); 124 build(elements);
125 packageWriter.close(); 125 packageWriter.close();
126 Util.copyDocFiles( 126 Util.copyDocFiles(
127 configuration, 127 configuration,
128 Util.getPackageSourcePath(configuration, packageDoc), 128 Util.getPackageSourcePath(configuration, packageDoc),
160 } 160 }
161 161
162 /** 162 /**
163 * Build the package summary. 163 * Build the package summary.
164 */ 164 */
165 public void buildSummary(List elements) { 165 public void buildSummary(List<?> elements) {
166 build(elements); 166 build(elements);
167 } 167 }
168 168
169 /** 169 /**
170 * Build the overall header. 170 * Build the overall header.

mercurial