61
61
import com .sun .source .doctree .SystemPropertyTree ;
62
62
import com .sun .source .doctree .TextTree ;
63
63
import com .sun .source .doctree .ThrowsTree ;
64
- import com .sun .source .doctree .TextTree ;
65
64
import com .sun .source .util .DocTreePath ;
66
65
import jdk .javadoc .internal .doclets .formats .html .markup .ContentBuilder ;
67
66
import jdk .javadoc .internal .doclets .formats .html .markup .HtmlAttr ;
85
84
import jdk .javadoc .internal .doclets .toolkit .util .DocLink ;
86
85
import jdk .javadoc .internal .doclets .toolkit .util .DocPath ;
87
86
import jdk .javadoc .internal .doclets .toolkit .util .DocPaths ;
88
- import jdk .javadoc .internal .doclets .toolkit .util .DocletConstants ;
89
87
import jdk .javadoc .internal .doclets .toolkit .util .IndexItem ;
90
88
import jdk .javadoc .internal .doclets .toolkit .util .Utils ;
91
89
import jdk .javadoc .internal .doclets .toolkit .util .Utils .PreviewFlagProvider ;
@@ -163,7 +161,7 @@ Context within(DocTree tree) {
163
161
private final Context context ;
164
162
165
163
// Threshold for length of @see tag label for switching from inline to block layout.
166
- private static final int SEE_TAG_MAX_INLINE_LENGTH = 30 ;
164
+ private static final int TAG_LIST_ITEM_MAX_INLINE_LENGTH = 30 ;
167
165
168
166
/**
169
167
* Creates a taglet writer.
@@ -388,7 +386,7 @@ public Content seeTagOutput(Element holder, List<? extends SeeTree> seeTags) {
388
386
}
389
387
// Use a different style if any link label is longer than 30 chars or contains commas.
390
388
boolean hasLongLabels = links .stream ().anyMatch (this ::isLongOrHasComma );
391
- var seeList = HtmlTree .UL (hasLongLabels ? HtmlStyle .seeListLong : HtmlStyle .seeList );
389
+ var seeList = HtmlTree .UL (hasLongLabels ? HtmlStyle .tagListLong : HtmlStyle .tagList );
392
390
links .stream ()
393
391
.filter (Predicate .not (Content ::isEmpty ))
394
392
.forEach (item -> seeList .add (HtmlTree .LI (item )));
@@ -403,7 +401,7 @@ private boolean isLongOrHasComma(Content c) {
403
401
.replaceAll ("<.*?>" , "" ) // ignore HTML
404
402
.replaceAll ("&#?[A-Za-z0-9]+;" , " " ) // entities count as a single character
405
403
.replaceAll ("\\ R" , "\n " ); // normalize newlines
406
- return s .length () > SEE_TAG_MAX_INLINE_LENGTH || s .contains ("," );
404
+ return s .length () > TAG_LIST_ITEM_MAX_INLINE_LENGTH || s .contains ("," );
407
405
}
408
406
409
407
String textOf (List <? extends DocTree > trees ) {
@@ -413,13 +411,6 @@ String textOf(List<? extends DocTree> trees) {
413
411
.collect (Collectors .joining (" " ));
414
412
}
415
413
416
- private void appendSeparatorIfNotEmpty (ContentBuilder body ) {
417
- if (!body .isEmpty ()) {
418
- body .add (", " );
419
- body .add (Text .NL );
420
- }
421
- }
422
-
423
414
/**
424
415
* {@return the output for a single {@code @see} tag}
425
416
*
@@ -753,17 +744,24 @@ public Element getLinkedElement(Element referer, String signature) {
753
744
754
745
@ Override
755
746
public Content specTagOutput (Element holder , List <? extends SpecTree > specTags ) {
756
- ContentBuilder body = new ContentBuilder ();
757
- for (SpecTree st : specTags ) {
758
- appendSeparatorIfNotEmpty (body );
759
- body .add (specTagToContent (holder , st ));
747
+ if (specTags .isEmpty ()) {
748
+ return Text .EMPTY ;
760
749
}
761
- if (body .isEmpty ())
762
- return body ;
750
+
751
+ List <Content > links = specTags .stream ()
752
+ .map (st -> specTagToContent (holder , st ))
753
+ .collect (Collectors .toList ());
754
+
755
+ // Use a different style if any link label is longer than 30 chars or contains commas.
756
+ boolean hasLongLabels = links .stream ().anyMatch (this ::isLongOrHasComma );
757
+ var specList = HtmlTree .UL (hasLongLabels ? HtmlStyle .tagListLong : HtmlStyle .tagList );
758
+ links .stream ()
759
+ .filter (Predicate .not (Content ::isEmpty ))
760
+ .forEach (item -> specList .add (HtmlTree .LI (item )));
763
761
764
762
return new ContentBuilder (
765
763
HtmlTree .DT (contents .externalSpecifications ),
766
- HtmlTree .DD (body ));
764
+ HtmlTree .DD (specList ));
767
765
}
768
766
769
767
private Content specTagToContent (Element holder , SpecTree specTree ) {
0 commit comments