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

/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/
H A DMethodWriter.java80 * @param methodDocTree content tree to which the deprecated information will be added
82 public void addDeprecated(ExecutableElement method, Content methodDocTree); argument
89 * @param methodDocTree the content tree to which the comments will be added
91 public void addComments(TypeMirror holder, ExecutableElement method, Content methodDocTree); argument
97 * @param methodDocTree the content tree to which the tags will be added
99 public void addTags(ExecutableElement method, Content methodDocTree); argument
112 * @param methodDocTree the content tree representing method documentation
116 public Content getMethodDoc(Content methodDocTree, boolean isLastContent); argument
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DMethodWriter.java79 * @param methodDocTree content tree to which the deprecated information will be added
81 public void addDeprecated(MethodDoc method, Content methodDocTree); argument
88 * @param methodDocTree the content tree to which the comments will be added
90 public void addComments(Type holder, MethodDoc method, Content methodDocTree); argument
96 * @param methodDocTree the content tree to which the tags will be added
98 public void addTags(MethodDoc method, Content methodDocTree); argument
111 * @param methodDocTree the content tree representing method documentation
115 public Content getMethodDoc(Content methodDocTree, boolean isLastContent); argument
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DMethodBuilder.java165 Content methodDocTree = writer.getMethodDocTreeHeader(
168 buildChildren(node, methodDocTree);
170 methodDocTree, (currentMethodIndex == size - 1)));
181 * @param methodDocTree the content tree to which the documentation will be added
183 public void buildSignature(XMLNode node, Content methodDocTree) { argument
184 methodDocTree.addContent(
192 * @param methodDocTree the content tree to which the documentation will be added
194 public void buildDeprecationInfo(XMLNode node, Content methodDocTree) { argument
196 (MethodDoc) methods.get(currentMethodIndex), methodDocTree);
204 * @param methodDocTree th
206 buildMethodComments(XMLNode node, Content methodDocTree) argument
229 buildTagInfo(XMLNode node, Content methodDocTree) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/
H A DMethodBuilder.java150 Content methodDocTree = writer.getMethodDocTreeHeader(currentMethod, methodDetailsTree);
151 buildChildren(node, methodDocTree);
153 methodDocTree, currentMethod == lastElement));
163 * @param methodDocTree the content tree to which the documentation will be added
165 public void buildSignature(XMLNode node, Content methodDocTree) { argument
166 methodDocTree.addContent(writer.getSignature(currentMethod));
173 * @param methodDocTree the content tree to which the documentation will be added
175 public void buildDeprecationInfo(XMLNode node, Content methodDocTree) { argument
176 writer.addDeprecated(currentMethod, methodDocTree);
184 * @param methodDocTree th
186 buildMethodComments(XMLNode node, Content methodDocTree) argument
206 buildTagInfo(XMLNode node, Content methodDocTree) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DMethodWriterImpl.java128 Content methodDocTree = writer.getMemberTreeHeader();
131 methodDocTree.addContent(heading);
132 return methodDocTree;
165 public void addDeprecated(ExecutableElement method, Content methodDocTree) { argument
166 addDeprecatedInfo(method, methodDocTree);
173 public void addComments(TypeMirror holderType, ExecutableElement method, Content methodDocTree) { argument
179 writer.addInlineComment(method, methodDocTree);
195 methodDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, descfrmLabel));
196 writer.addInlineComment(method, methodDocTree);
205 public void addTags(ExecutableElement method, Content methodDocTree) { argument
225 getMethodDoc(Content methodDocTree, boolean isLastContent) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DMethodWriterImpl.java116 Content methodDocTree = writer.getMemberTreeHeader();
119 methodDocTree.addContent(heading);
120 return methodDocTree;
151 public void addDeprecated(MethodDoc method, Content methodDocTree) { argument
152 addDeprecatedInfo(method, methodDocTree);
158 public void addComments(Type holder, MethodDoc method, Content methodDocTree) { argument
164 writer.addInlineComment(method, methodDocTree);
177 methodDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, descfrmLabel));
178 writer.addInlineComment(method, methodDocTree);
186 public void addTags(MethodDoc method, Content methodDocTree) { argument
204 getMethodDoc(Content methodDocTree, boolean isLastContent) argument
[all...]

Completed in 92 milliseconds