Searched refs:constructorDocTree (Results 1 - 6 of 6) sorted by relevance

/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/
H A DConstructorWriter.java79 * @param constructorDocTree content tree to which the deprecated information will be added
81 public void addDeprecated(ExecutableElement constructor, Content constructorDocTree); argument
87 * @param constructorDocTree the content tree to which the comments will be added
89 public void addComments(ExecutableElement constructor, Content constructorDocTree); argument
95 * @param constructorDocTree the content tree to which the tags will be added
97 public void addTags(ExecutableElement constructor, Content constructorDocTree); argument
110 * @param constructorDocTree the content tree representing constructor documentation
114 public Content getConstructorDoc(Content constructorDocTree, boolean isLastContent); argument
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConstructorWriter.java79 * @param constructorDocTree content tree to which the deprecated information will be added
81 public void addDeprecated(ConstructorDoc constructor, Content constructorDocTree); argument
87 * @param constructorDocTree the content tree to which the comments will be added
89 public void addComments(ConstructorDoc constructor, Content constructorDocTree); argument
95 * @param constructorDocTree the content tree to which the tags will be added
97 public void addTags(ConstructorDoc constructor, Content constructorDocTree); argument
110 * @param constructorDocTree the content tree representing constructor documentation
114 public Content getConstructorDoc(Content constructorDocTree, boolean isLastContent); argument
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/
H A DConstructorBuilder.java163 Content constructorDocTree = writer.getConstructorDocTreeHeader(currentConstructor, constructorDetailsTree);
164 buildChildren(node, constructorDocTree);
165 constructorDetailsTree.addContent(writer.getConstructorDoc(constructorDocTree,
177 * @param constructorDocTree the content tree to which the documentation will be added
179 public void buildSignature(XMLNode node, Content constructorDocTree) { argument
180 constructorDocTree.addContent(writer.getSignature(currentConstructor));
187 * @param constructorDocTree the content tree to which the documentation will be added
189 public void buildDeprecationInfo(XMLNode node, Content constructorDocTree) { argument
190 writer.addDeprecated(currentConstructor, constructorDocTree);
198 * @param constructorDocTree th
200 buildConstructorComments(XMLNode node, Content constructorDocTree) argument
212 buildTagInfo(XMLNode node, Content constructorDocTree) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DConstructorBuilder.java171 Content constructorDocTree = writer.getConstructorDocTreeHeader(
174 buildChildren(node, constructorDocTree);
176 constructorDocTree, (currentConstructorIndex == size - 1)));
187 * @param constructorDocTree the content tree to which the documentation will be added
189 public void buildSignature(XMLNode node, Content constructorDocTree) { argument
190 constructorDocTree.addContent(
199 * @param constructorDocTree the content tree to which the documentation will be added
201 public void buildDeprecationInfo(XMLNode node, Content constructorDocTree) { argument
203 (ConstructorDoc) constructors.get(currentConstructorIndex), constructorDocTree);
211 * @param constructorDocTree th
213 buildConstructorComments(XMLNode node, Content constructorDocTree) argument
227 buildTagInfo(XMLNode node, Content constructorDocTree) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DConstructorWriterImpl.java139 Content constructorDocTree = writer.getMemberTreeHeader();
142 constructorDocTree.addContent(heading);
143 return constructorDocTree;
180 public void addDeprecated(ExecutableElement constructor, Content constructorDocTree) { argument
181 addDeprecatedInfo(constructor, constructorDocTree);
188 public void addComments(ExecutableElement constructor, Content constructorDocTree) { argument
189 addComment(constructor, constructorDocTree);
196 public void addTags(ExecutableElement constructor, Content constructorDocTree) { argument
197 writer.addTagsInfo(constructor, constructorDocTree);
216 public Content getConstructorDoc(Content constructorDocTree, argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DConstructorWriterImpl.java126 Content constructorDocTree = writer.getMemberTreeHeader();
129 constructorDocTree.addContent(heading);
130 return constructorDocTree;
167 public void addDeprecated(ConstructorDoc constructor, Content constructorDocTree) { argument
168 addDeprecatedInfo(constructor, constructorDocTree);
174 public void addComments(ConstructorDoc constructor, Content constructorDocTree) { argument
175 addComment(constructor, constructorDocTree);
181 public void addTags(ConstructorDoc constructor, Content constructorDocTree) { argument
182 writer.addTagsInfo(constructor, constructorDocTree);
199 public Content getConstructorDoc(Content constructorDocTree, argument
[all...]

Completed in 101 milliseconds