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

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConstructorWriter.java77 * @param constructorDocTree content tree to which the deprecated information will be added
79 public void addDeprecated(ConstructorDoc constructor, Content constructorDocTree); argument
85 * @param constructorDocTree the content tree to which the comments will be added
87 public void addComments(ConstructorDoc constructor, Content constructorDocTree); argument
93 * @param constructorDocTree the content tree to which the tags will be added
95 public void addTags(ConstructorDoc constructor, Content constructorDocTree); argument
108 * @param constructorDocTree the content tree representing constructor documentation
112 public Content getConstructorDoc(Content constructorDocTree, boolean isLastContent); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DConstructorBuilder.java172 Content constructorDocTree = writer.getConstructorDocTreeHeader(
175 buildChildren(node, constructorDocTree);
177 constructorDocTree, (currentConstructorIndex == size - 1)));
188 * @param constructorDocTree the content tree to which the documentation will be added
190 public void buildSignature(XMLNode node, Content constructorDocTree) { argument
191 constructorDocTree.addContent(
200 * @param constructorDocTree the content tree to which the documentation will be added
202 public void buildDeprecationInfo(XMLNode node, Content constructorDocTree) { argument
204 (ConstructorDoc) constructors.get(currentConstructorIndex), constructorDocTree);
212 * @param constructorDocTree th
214 buildConstructorComments(XMLNode node, Content constructorDocTree) argument
228 buildTagInfo(XMLNode node, Content constructorDocTree) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DConstructorWriterImpl.java113 Content constructorDocTree = writer.getMemberTreeHeader();
116 constructorDocTree.addContent(heading);
117 return constructorDocTree;
153 public void addDeprecated(ConstructorDoc constructor, Content constructorDocTree) { argument
154 addDeprecatedInfo(constructor, constructorDocTree);
160 public void addComments(ConstructorDoc constructor, Content constructorDocTree) { argument
161 addComment(constructor, constructorDocTree);
167 public void addTags(ConstructorDoc constructor, Content constructorDocTree) { argument
168 writer.addTagsInfo(constructor, constructorDocTree);
181 public Content getConstructorDoc(Content constructorDocTree, argument
[all...]

Completed in 32 milliseconds