Searched refs:firstSentenceTags (Results 1 - 23 of 23) sorted by relevance

/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/
H A DTag.java165 Tag[] firstSentenceTags(); method in interface:Tag
H A DDoc.java124 Tag[] firstSentenceTags(); method in interface:Doc
/openjdk9/langtools/test/tools/javadoc/
H A DBreakIteratorWarning.java53 fd.firstSentenceTags();
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DTextTag.java102 public Tag[] firstSentenceTags() { method in class:TextTag
H A DDocFinder.java197 input.element.firstSentenceTags() :
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DTagImpl.java168 public Tag[] firstSentenceTags() { method in class:TagImpl
174 firstSentence = Comment.firstSentenceTags(holder, text);
H A DDocImpl.java197 public Tag[] firstSentenceTags() { method in class:DocImpl
203 firstSentence = Comment.firstSentenceTags(this, commentText());
H A DComment.java448 static Tag[] firstSentenceTags(DocImpl holder, String text) { method in class:Comment
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/
H A DMemberSummaryWriter.java75 * @param firstSentenceTags the tags for the sentence being documented
80 List<? extends DocTree> firstSentenceTags, List<Content> tableContents, int counter);
79 addMemberSummary(TypeElement typeElement, Element member, List<? extends DocTree> firstSentenceTags, List<Content> tableContents, int counter) argument
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DMemberSummaryWriter.java73 * @param firstSentenceTags the tags for the sentence being documented
78 Tag[] firstSentenceTags, List<Content> tableContents, int counter);
77 addMemberSummary(ClassDoc classDoc, ProgramElementDoc member, Tag[] firstSentenceTags, List<Content> tableContents, int counter) argument
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DSubWriterHolderWriter.java170 addIndexComment(member, member.firstSentenceTags(), contentTree);
177 * @param firstSentenceTags the first sentence tags for the member to be documented
180 protected void addIndexComment(Doc member, Tag[] firstSentenceTags, argument
202 addSummaryComment(member, firstSentenceTags, tdSummary);
226 addSummaryLinkComment(mw, member, member.firstSentenceTags(), contentTree);
234 * @param firstSentenceTags the first sentence tags for the member to be documented
238 ProgramElementDoc member, Tag[] firstSentenceTags, Content tdSummary) {
239 addIndexComment(member, firstSentenceTags, tdSummary);
237 addSummaryLinkComment(AbstractMemberWriter mw, ProgramElementDoc member, Tag[] firstSentenceTags, Content tdSummary) argument
H A DAbstractMemberWriter.java556 * @param firstSentenceTags the first sentence tags to be added to the summary
561 Tag[] firstSentenceTags, List<Content> tableContents, int counter) {
568 writer.addSummaryLinkComment(this, member, firstSentenceTags, tdSummary);
560 addMemberSummary(ClassDoc classDoc, ProgramElementDoc member, Tag[] firstSentenceTags, List<Content> tableContents, int counter) argument
H A DHtmlDocletWriter.java1441 addSummaryComment(doc, doc.firstSentenceTags(), htmltree);
1448 * @param firstSentenceTags the first sentence tags for the doc
1451 public void addSummaryComment(Doc doc, Tag[] firstSentenceTags, Content htmltree) { argument
1452 addCommentTags(doc, firstSentenceTags, false, true, htmltree);
1456 addCommentTags(doc, tag.firstSentenceTags(), true, true, htmltree);
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DReturnTaglet.java60 tags[0].firstSentenceTags() : tags[0].inlineTags();
H A DSeeTaglet.java59 tags[0].firstSentenceTags() : tags[0].inlineTags();
H A DSimpleTaglet.java213 ? tags[0].firstSentenceTags() : tags[0].inlineTags();
H A DThrowsTaglet.java75 tag.firstSentenceTags() : tag.inlineTags();
H A DParamTaglet.java116 tag.firstSentenceTags() : tag.inlineTags();
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DMemberSummaryBuilder.java346 Tag[] firstSentenceTags = member.firstSentenceTags();
347 if (member instanceof MethodDoc && firstSentenceTags.length == 0) {
353 && inheritedDoc.holder.firstSentenceTags().length > 0) {
354 firstSentenceTags = inheritedDoc.holder.firstSentenceTags();
357 writer.addMemberSummary(classDoc, member, firstSentenceTags,
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DSubWriterHolderWriter.java182 * @param firstSentenceTags the first sentence tags for the member to be documented
185 protected void addIndexComment(Element member, List<? extends DocTree> firstSentenceTags, argument
207 addSummaryComment(member, firstSentenceTags, tdSummary);
238 * @param firstSentenceTags the first sentence tags for the member to be documented
242 Element member, List<? extends DocTree> firstSentenceTags, Content tdSummary) {
243 addIndexComment(member, firstSentenceTags, tdSummary);
241 addSummaryLinkComment(AbstractMemberWriter mw, Element member, List<? extends DocTree> firstSentenceTags, Content tdSummary) argument
H A DAbstractMemberWriter.java517 * @param firstSentenceTags the first sentence tags to be added to the summary
522 List<? extends DocTree> firstSentenceTags, List<Content> tableContents, int counter) {
533 writer.addSummaryLinkComment(this, member, firstSentenceTags, tdDesc);
521 addMemberSummary(TypeElement tElement, Element member, List<? extends DocTree> firstSentenceTags, List<Content> tableContents, int counter) argument
H A DHtmlDocletWriter.java1666 * @param firstSentenceTags the first sentence tags for the doc
1669 public void addSummaryComment(Element element, List<? extends DocTree> firstSentenceTags, Content htmltree) { argument
1670 addCommentTags(element, firstSentenceTags, false, true, htmltree);
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/
H A DMemberSummaryBuilder.java344 List<? extends DocTree> firstSentenceTags = utils.getFirstSentenceTrees(member);
345 if (utils.isExecutableElement(member) && firstSentenceTags.isEmpty()) {
356 firstSentenceTags = utils.getFirstSentenceTrees(inheritedDoc.holder);
359 writer.addMemberSummary(typeElement, member, firstSentenceTags,

Completed in 120 milliseconds