< prev index next >

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

Print this page

        

*** 231,243 **** * @throws DocFileIOException if there is a problem while generating the documentation */ public static void generate(HtmlConfiguration configuration, ClassUseMapper mapper, TypeElement typeElement) throws DocFileIOException { ClassUseWriter clsgen; ! DocPath path = DocPath.forPackage(configuration.utils, typeElement) .resolve(DocPaths.CLASS_USE) ! .resolve(DocPath.forName(configuration.utils, typeElement)); clsgen = new ClassUseWriter(configuration, mapper, path, typeElement); clsgen.generateClassUseFile(); } /** --- 231,243 ---- * @throws DocFileIOException if there is a problem while generating the documentation */ public static void generate(HtmlConfiguration configuration, ClassUseMapper mapper, TypeElement typeElement) throws DocFileIOException { ClassUseWriter clsgen; ! DocPath path = configuration.docPaths.forPackage(typeElement) .resolve(DocPaths.CLASS_USE) ! .resolve(configuration.docPaths.forName( typeElement)); clsgen = new ClassUseWriter(configuration, mapper, path, typeElement); clsgen.generateClassUseFile(); } /**
< prev index next >