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

changeset 1383
b980e8e6aabf
parent 1372
78962d89f283
child 1410
bfec2a1cc869
equal deleted inserted replaced
1382:27f7952eea3c 1383:b980e8e6aabf
138 containingPackage) < 0) && 138 containingPackage) < 0) &&
139 ! containingPackagesSeen.contains(containingPackage.name())){ 139 ! containingPackagesSeen.contains(containingPackage.name())){
140 //Only copy doc files dir if the containing package is not 140 //Only copy doc files dir if the containing package is not
141 //documented AND if we have not documented a class from the same 141 //documented AND if we have not documented a class from the same
142 //package already. Otherwise, we are making duplicate copies. 142 //package already. Otherwise, we are making duplicate copies.
143 Util.copyDocFiles(configuration, 143 Util.copyDocFiles(configuration, containingPackage);
144 new File(Util.getPackageSourcePath(configuration, containingPackage),
145 DocPath.forPackage(annotationTypeDoc).getPath()),
146 DocPaths.DOC_FILES, true);
147 containingPackagesSeen.add(containingPackage.name()); 144 containingPackagesSeen.add(containingPackage.name());
148 } 145 }
149 } 146 }
150 147
151 /** 148 /**

mercurial