Searched defs:contentTree (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DSerializedFormWriter.java179 * @param contentTree content tree to which the heading will be added
182 public Content getSerializableFields(String heading, Content contentTree); argument
188 * @param contentTree content tree to which the deprecated information will be added
190 public void addMemberDeprecatedInfo(FieldDoc field, Content contentTree); argument
196 * @param contentTree content tree to which the member description will be added
198 public void addMemberDescription(FieldDoc field, Content contentTree); argument
204 * @param contentTree content tree to which the member description will be added
206 public void addMemberDescription(SerialFieldTag serialFieldTag, Content contentTree); argument
212 * @param contentTree content tree to which the member tags will be added
214 public void addMemberTags(FieldDoc field, Content contentTree); argument
226 addMemberHeader(ClassDoc fieldType, String fieldTypeStr, String fieldDimensions, String fieldName, Content contentTree) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DClassBuilder.java75 private Content contentTree; field in class:ClassBuilder
117 build(LayoutParser.getInstance(configuration).parseXML(ROOT), contentTree);
131 * @param contentTree the content tree to which the documentation will be added
133 public void buildClassDoc(XMLNode node, Content contentTree) throws Exception { argument
142 contentTree = writer.getHeader(configuration.getText(key) + " " +
146 contentTree.addContent(classContentTree);
147 writer.addFooter(contentTree);
148 writer.printDocument(contentTree);
H A DConstantsSummaryBuilder.java86 private Content contentTree; field in class:ConstantsSummaryBuilder
122 build(LayoutParser.getInstance(configuration).parseXML(ROOT), contentTree);
136 * @param contentTree the content tree to which the documentation will be added
138 public void buildConstantSummary(XMLNode node, Content contentTree) throws Exception { argument
139 contentTree = writer.getHeader();
140 buildChildren(node, contentTree);
141 writer.addFooter(contentTree);
142 writer.printDocument(contentTree);
150 * @param contentTree the content tree to which the content list will be added
152 public void buildContents(XMLNode node, Content contentTree) { argument
172 buildConstantSummaries(XMLNode node, Content contentTree) argument
[all...]
H A DSerializedFormBuilder.java92 private Content contentTree; field in class:SerializedFormBuilder
124 build(LayoutParser.getInstance(configuration).parseXML(NAME), contentTree);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractMemberWriter.java351 * @param contentTree the content tree to which the deprecated information will be added.
353 protected void addDeprecatedInfo(ProgramElementDoc member, Content contentTree) { argument
359 contentTree.addContent(div);
367 * @param contentTree the content tree to which the comment will be added.
414 * @param contentTree the content tree to which the deprecated members table will be added
417 String tableSummary, String[] tableHeader, Content contentTree) {
439 contentTree.addContent(ul);
449 * @param contentTree the content tree to which the use information will be added
452 String heading, String tableSummary, Content contentTree) {
498 contentTree
416 addDeprecatedAPI(List<Doc> deprmembers, String headingKey, String tableSummary, String[] tableHeader, Content contentTree) argument
451 addUseInfo(List<? extends ProgramElementDoc> mems, String heading, String tableSummary, Content contentTree) argument
[all...]
H A DHtmlDocletWriter.java1425 * @param contentTree the content tree to which the deprecated package table will be added
1428 String tableSummary, String[] tableHeader, Content contentTree) {
1452 contentTree.addContent(ul);
1883 * @param contentTree the content tree to which the link will be added
1885 public void addPreQualifiedClassLink(int context, ClassDoc cd, Content contentTree) { argument
1886 addPreQualifiedClassLink(context, cd, false, contentTree);
1917 * @param contentTree the content tree to which the link with be added
1920 ClassDoc cd, boolean isStrong, Content contentTree) {
1923 contentTree.addContent(getPkgName(cd));
1925 contentTree
1427 addPackageDeprecatedAPI(List<Doc> deprPkgs, String headingKey, String tableSummary, String[] tableHeader, Content contentTree) argument
1919 addPreQualifiedClassLink(int context, ClassDoc cd, boolean isStrong, Content contentTree) argument
1937 addPreQualifiedStrongClassLink(int context, ClassDoc cd, Content contentTree) argument
[all...]

Completed in 55 milliseconds

12