< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/ConstructorBuilder.java

Print this page

        

*** 130,146 **** protected void buildConstructorDoc(Content memberDetailsTree) throws DocletException { if (writer == null) { return; } if (hasMembersToDocument()) { ! Content constructorDetailsTreeHeader = writer.getConstructorDetailsTreeHeader(typeElement, ! memberDetailsTree); Content constructorDetailsTree = writer.getMemberTreeHeader(); for (Element constructor : constructors) { currentConstructor = (ExecutableElement)constructor; ! Content constructorDocTree = writer.getConstructorDocTreeHeader(currentConstructor, constructorDetailsTree); buildSignature(constructorDocTree); buildDeprecationInfo(constructorDocTree); buildConstructorComments(constructorDocTree); buildTagInfo(constructorDocTree); --- 130,145 ---- protected void buildConstructorDoc(Content memberDetailsTree) throws DocletException { if (writer == null) { return; } if (hasMembersToDocument()) { ! Content constructorDetailsTreeHeader = writer.getConstructorDetailsTreeHeader(memberDetailsTree); Content constructorDetailsTree = writer.getMemberTreeHeader(); for (Element constructor : constructors) { currentConstructor = (ExecutableElement)constructor; ! Content constructorDocTree = writer.getConstructorDocTreeHeader(currentConstructor); buildSignature(constructorDocTree); buildDeprecationInfo(constructorDocTree); buildConstructorComments(constructorDocTree); buildTagInfo(constructorDocTree);
< prev index next >