src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ClassUseWriter.java
changeset 48759 ffa68af7da87
parent 48654 36f58bd6269f
child 49551 0d4786e42471
equal deleted inserted replaced
48758:ba19a21d727d 48759:ffa68af7da87
   231      * @throws DocFileIOException if there is a problem while generating the documentation
   231      * @throws DocFileIOException if there is a problem while generating the documentation
   232      */
   232      */
   233     public static void generate(HtmlConfiguration configuration, ClassUseMapper mapper,
   233     public static void generate(HtmlConfiguration configuration, ClassUseMapper mapper,
   234                                 TypeElement typeElement) throws DocFileIOException {
   234                                 TypeElement typeElement) throws DocFileIOException {
   235         ClassUseWriter clsgen;
   235         ClassUseWriter clsgen;
   236         DocPath path = DocPath.forPackage(configuration.utils, typeElement)
   236         DocPath path = configuration.docPaths.forPackage(typeElement)
   237                               .resolve(DocPaths.CLASS_USE)
   237                               .resolve(DocPaths.CLASS_USE)
   238                               .resolve(DocPath.forName(configuration.utils, typeElement));
   238                               .resolve(configuration.docPaths.forName( typeElement));
   239         clsgen = new ClassUseWriter(configuration, mapper, path, typeElement);
   239         clsgen = new ClassUseWriter(configuration, mapper, path, typeElement);
   240         clsgen.generateClassUseFile();
   240         clsgen.generateClassUseFile();
   241     }
   241     }
   242 
   242 
   243     /**
   243     /**