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

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DMethodWriter.java77 * @param methodDocTree content tree to which the deprecated information will be added
79 public void addDeprecated(MethodDoc method, Content methodDocTree); argument
86 * @param methodDocTree the content tree to which the comments will be added
88 public void addComments(Type holder, MethodDoc method, Content methodDocTree); argument
94 * @param methodDocTree the content tree to which the tags will be added
96 public void addTags(MethodDoc method, Content methodDocTree); argument
109 * @param methodDocTree the content tree representing method documentation
113 public Content getMethodDoc(Content methodDocTree, boolean isLastContent); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DMethodBuilder.java159 Content methodDocTree = writer.getMethodDocTreeHeader(
162 buildChildren(node, methodDocTree);
164 methodDocTree, (currentMethodIndex == size - 1)));
175 * @param methodDocTree the content tree to which the documentation will be added
177 public void buildSignature(XMLNode node, Content methodDocTree) { argument
178 methodDocTree.addContent(
186 * @param methodDocTree the content tree to which the documentation will be added
188 public void buildDeprecationInfo(XMLNode node, Content methodDocTree) { argument
190 (MethodDoc) methods.get(currentMethodIndex), methodDocTree);
198 * @param methodDocTree th
200 buildMethodComments(XMLNode node, Content methodDocTree) argument
223 buildTagInfo(XMLNode node, Content methodDocTree) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DMethodWriterImpl.java101 Content methodDocTree = writer.getMemberTreeHeader();
104 methodDocTree.addContent(heading);
105 return methodDocTree;
135 public void addDeprecated(MethodDoc method, Content methodDocTree) { argument
136 addDeprecatedInfo(method, methodDocTree);
142 public void addComments(Type holder, MethodDoc method, Content methodDocTree) { argument
148 writer.addInlineComment(method, methodDocTree);
161 methodDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, strong));
162 writer.addInlineComment(method, methodDocTree);
170 public void addTags(MethodDoc method, Content methodDocTree) { argument
184 getMethodDoc(Content methodDocTree, boolean isLastContent) argument
[all...]

Completed in 23 milliseconds