protected void generateOtherFiles(RootDoc rootDoc, ClassTree classTree)
throws Exception {
super.generateOtherFiles(rootDoc, classTree);
HtmlDocletWriter writer = new HtmlDocletWriter(configuration, "jsdoc.html");
writer.html();
writer.body("white", true);
for (ClassDoc clz : rootDoc.classes()) {
if (isExportable(clz)) {
int countExportedMethods = 0;
for (ConstructorDoc cd : clz.constructors()) {