src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/ConstructorWriter.java
changeset 54596 86c1da00dd6a
parent 47216 71c04702a3d5
child 55232 9b392b044f64
equal deleted inserted replaced
54595:a61da18408c1 54596:86c1da00dd6a
    97     public void addTags(ExecutableElement constructor, Content constructorDocTree);
    97     public void addTags(ExecutableElement constructor, Content constructorDocTree);
    98 
    98 
    99     /**
    99     /**
   100      * Get the constructor details tree.
   100      * Get the constructor details tree.
   101      *
   101      *
       
   102      * memberDetailsTreeHeader the content tree representing member details header
   102      * @param memberDetailsTree the content tree representing member details
   103      * @param memberDetailsTree the content tree representing member details
   103      * @return content tree for the constructor details
   104      * @return content tree for the constructor details
   104      */
   105      */
   105     public Content getConstructorDetails(Content memberDetailsTree);
   106     public Content getConstructorDetails(Content memberDetailsTreeHeader, Content memberDetailsTree);
   106 
   107 
   107     /**
   108     /**
   108      * Get the constructor documentation.
   109      * Get the constructor documentation.
   109      *
   110      *
   110      * @param constructorDocTree the content tree representing constructor documentation
   111      * @param constructorDocTree the content tree representing constructor documentation
   117      * Let the writer know whether a non public constructor was found.
   118      * Let the writer know whether a non public constructor was found.
   118      *
   119      *
   119      * @param foundNonPubConstructor true if we found a non public constructor.
   120      * @param foundNonPubConstructor true if we found a non public constructor.
   120      */
   121      */
   121     public void setFoundNonPubConstructor(boolean foundNonPubConstructor);
   122     public void setFoundNonPubConstructor(boolean foundNonPubConstructor);
       
   123 
       
   124     /**
       
   125      * Gets the member header tree.
       
   126      *
       
   127      * @return a content tree for the member header
       
   128      */
       
   129     public Content getMemberTreeHeader();
   122 }
   130 }