Skip to content

Commit 1cc3c33

Browse files
author
Pavel Rappo
committedApr 14, 2022
8283864: Clean up DocFinder and friends
Reviewed-by: jjg
1 parent 9a00b43 commit 1cc3c33

File tree

11 files changed

+166
-162
lines changed

11 files changed

+166
-162
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/MethodBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ protected void buildMethodComments(Content methodContent) {
169169
if (utils.getFullBody(currentMethod).isEmpty()) {
170170
DocFinder.Output docs = DocFinder.search(configuration,
171171
new DocFinder.Input(utils, currentMethod));
172-
if (docs.inlineTags != null && !docs.inlineTags.isEmpty())
173-
method = (ExecutableElement)docs.holder;
172+
if (!docs.inlineTags.isEmpty())
173+
method = (ExecutableElement) docs.holder;
174174
}
175175
TypeMirror containingType = method.getEnclosingElement().asType();
176176
writer.addComments(containingType, method, methodContent);

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/InheritDocTaglet.java

+43-30
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@
2626
package jdk.javadoc.internal.doclets.toolkit.taglets;
2727

2828
import java.util.EnumSet;
29+
2930
import javax.lang.model.element.Element;
3031
import javax.lang.model.element.ExecutableElement;
32+
import javax.lang.model.element.TypeElement;
33+
import javax.lang.model.type.TypeKind;
3134

3235
import com.sun.source.doctree.DocTree;
3336
import jdk.javadoc.doclet.Taglet.Location;
@@ -36,71 +39,81 @@
3639
import jdk.javadoc.internal.doclets.toolkit.Messages;
3740
import jdk.javadoc.internal.doclets.toolkit.util.CommentHelper;
3841
import jdk.javadoc.internal.doclets.toolkit.util.DocFinder;
39-
import jdk.javadoc.internal.doclets.toolkit.util.DocFinder.Input;
4042
import jdk.javadoc.internal.doclets.toolkit.util.Utils;
4143

4244
/**
43-
* An inline taglet representing the {@code {@inheritDoc}} tag. This tag should only
44-
* be used with a method. It is used to inherit documentation from overridden
45-
* and implemented methods.
45+
* An inline taglet representing the {@code {@inheritDoc}} tag.
46+
* It is used to copy documentation from superclass (but not superinterface)
47+
* declarations and from overridden and implemented methods.
4648
*/
4749
public class InheritDocTaglet extends BaseTaglet {
4850

4951
/**
5052
* Construct a new InheritDocTaglet.
5153
*/
52-
public InheritDocTaglet () {
54+
public InheritDocTaglet() {
5355
super(DocTree.Kind.INHERIT_DOC, true, EnumSet.of(Location.TYPE, Location.METHOD));
5456
}
5557

5658
/**
5759
* Given an element, a {@code DocTree} in the element's doc comment
58-
* replace all occurrences of @inheritDoc with documentation from its
60+
* replace all occurrences of {@code {@inheritDoc}} with documentation from its
5961
* superclass or superinterface.
6062
*
6163
* @param writer the writer that is writing the output.
6264
* @param e the {@link Element} that we are documenting.
63-
* @param holderTag the tag that holds the inheritDoc tag or null for type
64-
* (class) docs.
65-
* @param isFirstSentence true if we only want to inherit the first sentence.
65+
*
66+
* @param holderTag
67+
*
68+
* either the tag that holds the {@code {@inheritDoc}} tag or {@code null},
69+
* which can mean either of:
70+
* <ul>
71+
* <li>the tag is used on a class {@link jdk.javadoc.doclet.Taglet.Location#TYPE} declaration, or
72+
* <li>the tag is used to copy the overall doc comment
73+
* </ul>
74+
*
75+
* @param isFirstSentence true if we only want to inherit the first sentence
6676
*/
6777
private Content retrieveInheritedDocumentation(TagletWriter writer,
68-
Element e, DocTree holderTag, boolean isFirstSentence) {
78+
Element e,
79+
DocTree holderTag,
80+
boolean isFirstSentence) {
6981
Content replacement = writer.getOutputInstance();
7082
BaseConfiguration configuration = writer.configuration();
7183
Messages messages = configuration.getMessages();
7284
Utils utils = configuration.utils;
7385
CommentHelper ch = utils.getCommentHelper(e);
74-
Taglet inheritableTaglet = holderTag == null
86+
Taglet taglet = holderTag == null
7587
? null
7688
: configuration.tagletManager.getTaglet(ch.getTagName(holderTag));
77-
if (inheritableTaglet != null &&
78-
!(inheritableTaglet instanceof InheritableTaglet)) {
79-
String message = utils.getSimpleName(e) +
80-
((utils.isExecutableElement(e))
81-
? utils.flatSignature((ExecutableElement)e, writer.getCurrentPageElement())
82-
: "");
83-
//This tag does not support inheritance.
84-
var path = writer.configuration().utils.getCommentHelper(e).getDocTreePath(holderTag);
85-
messages.warning(path, "doclet.inheritDocWithinInappropriateTag", message);
86-
return replacement;
89+
if (taglet != null && !(taglet instanceof InheritableTaglet)) {
90+
// This tag does not support inheritance.
91+
var path = writer.configuration().utils.getCommentHelper(e).getDocTreePath(holderTag);
92+
messages.warning(path, "doclet.inheritDocWithinInappropriateTag");
93+
return replacement;
8794
}
88-
Input input = new DocFinder.Input(utils, e,
89-
(InheritableTaglet) inheritableTaglet, new DocFinder.DocTreeInfo(holderTag, e),
90-
isFirstSentence, true);
95+
var input = new DocFinder.Input(utils, e, (InheritableTaglet) taglet,
96+
new DocFinder.DocTreeInfo(holderTag, e), isFirstSentence, true);
9197
DocFinder.Output inheritedDoc = DocFinder.search(configuration, input);
9298
if (inheritedDoc.isValidInheritDocTag) {
9399
if (!inheritedDoc.inlineTags.isEmpty()) {
94100
replacement = writer.commentTagsToOutput(inheritedDoc.holder, inheritedDoc.holderTag,
95-
inheritedDoc.inlineTags, isFirstSentence);
101+
inheritedDoc.inlineTags, isFirstSentence);
96102
}
97-
98103
} else {
99-
String message = utils.getSimpleName(e) +
104+
// This is to assert that we don't reach here for a class declaration.
105+
// Indeed, every class except for java.lang.Object has a superclass.
106+
// If we ever reach here, we would need a different warning; because
107+
// the below warning is about method declarations, not class declarations.
108+
// Unless @inheritDoc is used inside java.lang.Object itself,
109+
// which would clearly be an error, we shouldn't reach here.
110+
assert !(e instanceof TypeElement typeElement)
111+
|| typeElement.getSuperclass().getKind() == TypeKind.NONE;
112+
String signature = utils.getSimpleName(e) +
100113
((utils.isExecutableElement(e))
101-
? utils.flatSignature((ExecutableElement)e, writer.getCurrentPageElement())
102-
: "");
103-
messages.warning(e, "doclet.noInheritedDoc", message);
114+
? utils.flatSignature((ExecutableElement) e, writer.getCurrentPageElement())
115+
: e.toString());
116+
messages.warning(e, "doclet.noInheritedDoc", signature);
104117
}
105118
return replacement;
106119
}

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/InheritableTaglet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import jdk.javadoc.internal.doclets.toolkit.util.DocFinder;
2929

3030
/**
31-
* A taglet should implement this interface if it supports an {@code @inheritDoc}
31+
* A taglet should implement this interface if it supports an {@code {@inheritDoc}}
3232
* tag or is automatically inherited if it is missing.
3333
*/
3434
public interface InheritableTaglet extends Taglet {

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/ParamTaglet.java

+34-22
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public ParamTaglet() {
6868
* check.
6969
* @return a name-rank number map.
7070
*/
71-
private static Map<String, String> getRankMap(Utils utils, List<? extends Element> params){
71+
private static Map<String, String> getRankMap(Utils utils, List<? extends Element> params) {
7272
if (params == null) {
7373
return null;
7474
}
@@ -88,14 +88,14 @@ private static Map<String, String> getRankMap(Utils utils, List<? extends Elemen
8888
public void inherit(DocFinder.Input input, DocFinder.Output output) {
8989
Utils utils = input.utils;
9090
if (input.tagId == null) {
91-
input.isTypeVariableParamTag = ((ParamTree)input.docTreeInfo.docTree).isTypeParameter();
92-
ExecutableElement ee = (ExecutableElement)input.docTreeInfo.element;
91+
input.isTypeVariableParamTag = ((ParamTree) input.docTreeInfo.docTree()).isTypeParameter();
92+
ExecutableElement ee = (ExecutableElement) input.docTreeInfo.element();
9393
CommentHelper ch = utils.getCommentHelper(ee);
9494
List<? extends Element> parameters = input.isTypeVariableParamTag
9595
? ee.getTypeParameters()
9696
: ee.getParameters();
97-
String target = ch.getParameterName(input.docTreeInfo.docTree);
98-
for (int i = 0 ; i < parameters.size(); i++) {
97+
String target = ch.getParameterName(input.docTreeInfo.docTree());
98+
for (int i = 0; i < parameters.size(); i++) {
9999
Element e = parameters.get(i);
100100
String pname = input.isTypeVariableParamTag
101101
? utils.getTypeName(e.asType(), false)
@@ -106,7 +106,7 @@ public void inherit(DocFinder.Input input, DocFinder.Output output) {
106106
}
107107
}
108108
}
109-
ExecutableElement md = (ExecutableElement)input.element;
109+
ExecutableElement md = (ExecutableElement) input.element;
110110
CommentHelper ch = utils.getCommentHelper(md);
111111
List<? extends DocTree> tags = input.isTypeVariableParamTag
112112
? utils.getTypeParamTrees(md)
@@ -132,14 +132,14 @@ public Content getAllBlockTagOutput(Element holder, TagletWriter writer) {
132132
if (utils.isExecutableElement(holder)) {
133133
ExecutableElement member = (ExecutableElement) holder;
134134
Content output = getTagletOutput(ParamKind.TYPE_PARAMETER, member, writer,
135-
member.getTypeParameters(), utils.getTypeParamTrees(member));
135+
member.getTypeParameters(), utils.getTypeParamTrees(member));
136136
output.add(getTagletOutput(ParamKind.PARAMETER, member, writer,
137-
member.getParameters(), utils.getParamTrees(member)));
137+
member.getParameters(), utils.getParamTrees(member)));
138138
return output;
139139
} else {
140140
TypeElement typeElement = (TypeElement) holder;
141141
Content output = getTagletOutput(ParamKind.TYPE_PARAMETER, typeElement, writer,
142-
typeElement.getTypeParameters(), utils.getTypeParamTrees(typeElement));
142+
typeElement.getTypeParameters(), utils.getTypeParamTrees(typeElement));
143143
output.add(getTagletOutput(ParamKind.RECORD_COMPONENT, typeElement, writer,
144144
typeElement.getRecordComponents(), utils.getParamTrees(typeElement)));
145145
return output;
@@ -157,8 +157,11 @@ public Content getAllBlockTagOutput(Element holder, TagletWriter writer) {
157157
*
158158
* @return the content representation of these {@code @param DocTree}s.
159159
*/
160-
private Content getTagletOutput(ParamKind kind, Element holder,
161-
TagletWriter writer, List<? extends Element> formalParameters, List<? extends ParamTree> paramTags) {
160+
private Content getTagletOutput(ParamKind kind,
161+
Element holder,
162+
TagletWriter writer,
163+
List<? extends Element> formalParameters,
164+
List<? extends ParamTree> paramTags) {
162165
Content result = writer.getOutputInstance();
163166
result.add(processParamTags(holder, kind, paramTags, formalParameters, writer));
164167
return result;
@@ -167,15 +170,18 @@ private Content getTagletOutput(ParamKind kind, Element holder,
167170
/**
168171
* Try to get the inherited taglet documentation for a specific parameter.
169172
*/
170-
private Content getInheritedTagletOutput(ParamKind kind, Element holder,
171-
TagletWriter writer, Element param, int rank,
173+
private Content getInheritedTagletOutput(ParamKind kind,
174+
Element holder,
175+
TagletWriter writer,
176+
Element param,
177+
int rank,
172178
boolean isFirst) {
173179
Utils utils = writer.configuration().utils;
174180
Content result = writer.getOutputInstance();
175181
Input input = new DocFinder.Input(writer.configuration().utils, holder, this,
176182
Integer.toString(rank), kind == ParamKind.TYPE_PARAMETER);
177183
DocFinder.Output inheritedDoc = DocFinder.search(writer.configuration(), input);
178-
if (inheritedDoc.inlineTags != null && !inheritedDoc.inlineTags.isEmpty()) {
184+
if (!inheritedDoc.inlineTags.isEmpty()) {
179185
String lname = kind != ParamKind.TYPE_PARAMETER
180186
? utils.getSimpleName(param)
181187
: utils.getTypeName(param.asType(), false);
@@ -197,20 +203,23 @@ private Content getInheritedTagletOutput(ParamKind kind, Element holder,
197203
* @param writer the TagletWriter that will write this tag.
198204
* @return the Content representation of this {@code @param DocTree}.
199205
*/
200-
private Content processParamTags(Element e, ParamKind kind, List<? extends ParamTree> paramTags,
201-
List<? extends Element> formalParameters, TagletWriter writer) {
206+
private Content processParamTags(Element e,
207+
ParamKind kind,
208+
List<? extends ParamTree> paramTags,
209+
List<? extends Element> formalParameters,
210+
TagletWriter writer) {
202211
Map<String, ParamTree> documented = new HashMap<>();
203212
Messages messages = writer.configuration().getMessages();
204213
CommentHelper ch = writer.configuration().utils.getCommentHelper(e);
205214
if (!paramTags.isEmpty()) {
206-
Map<String,String> rankMap = getRankMap(writer.configuration().utils, formalParameters);
215+
Map<String, String> rankMap = getRankMap(writer.configuration().utils, formalParameters);
207216
for (ParamTree dt : paramTags) {
208217
String name = ch.getParameterName(dt);
209218
String paramName = kind == ParamKind.TYPE_PARAMETER ? "<" + name + ">" : name;
210219
if (!rankMap.containsKey(name)) {
211220
String key = switch (kind) {
212-
case PARAMETER -> "doclet.Parameters_warn";
213-
case TYPE_PARAMETER -> "doclet.TypeParameters_warn";
221+
case PARAMETER -> "doclet.Parameters_warn";
222+
case TYPE_PARAMETER -> "doclet.TypeParameters_warn";
214223
case RECORD_COMPONENT -> "doclet.RecordComponents_warn";
215224
};
216225
messages.warning(ch.getDocTreePath(dt), key, paramName);
@@ -269,9 +278,12 @@ private Content processParamTags(Element e, ParamKind kind, List<? extends Param
269278
* @param isFirstParam true if this is the first param tag being printed.
270279
*
271280
*/
272-
private Content processParamTag(Element e, ParamKind kind,
273-
TagletWriter writer, ParamTree paramTag, String name,
274-
boolean isFirstParam) {
281+
private Content processParamTag(Element e,
282+
ParamKind kind,
283+
TagletWriter writer,
284+
ParamTree paramTag,
285+
String name,
286+
boolean isFirstParam) {
275287
Content result = writer.getOutputInstance();
276288
if (isFirstParam) {
277289
result.add(writer.getParamHeader(kind));

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/ReturnTaglet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public Content getAllBlockTagOutput(Element holder, TagletWriter writer) {
9494
List<? extends ReturnTree> tags = utils.getReturnTrees(holder);
9595

9696
// Make sure we are not using @return tag on method with void return type.
97-
TypeMirror returnType = utils.getReturnType(writer.getCurrentPageElement(), (ExecutableElement)holder);
97+
TypeMirror returnType = utils.getReturnType(writer.getCurrentPageElement(), (ExecutableElement) holder);
9898
if (returnType != null && utils.isVoid(returnType)) {
9999
if (!tags.isEmpty()) {
100100
messages.warning(holder, "doclet.Return_tag_on_void_method");

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/SeeTaglet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public SeeTaglet() {
5252
public void inherit(DocFinder.Input input, DocFinder.Output output) {
5353
List<? extends SeeTree> tags = input.utils.getSeeTrees(input.element);
5454
if (!tags.isEmpty()) {
55-
CommentHelper ch = input.utils.getCommentHelper(input.element);
55+
CommentHelper ch = input.utils.getCommentHelper(input.element);
5656
output.holder = input.element;
5757
output.holderTag = tags.get(0);
5858
output.inlineTags = input.isFirstSentence

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/ThrowsTaglet.java

+21-17
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@
5555
/**
5656
* A taglet that represents the {@code @throws} tag.
5757
*/
58-
public class ThrowsTaglet extends BaseTaglet
59-
implements InheritableTaglet {
58+
public class ThrowsTaglet extends BaseTaglet implements InheritableTaglet {
6059

6160
public ThrowsTaglet() {
6261
super(DocTree.Kind.THROWS, false, EnumSet.of(Location.CONSTRUCTOR, Location.METHOD));
@@ -68,10 +67,10 @@ public void inherit(DocFinder.Input input, DocFinder.Output output) {
6867
Element exception;
6968
CommentHelper ch = utils.getCommentHelper(input.element);
7069
if (input.tagId == null) {
71-
exception = input.docTreeInfo.docTree instanceof ThrowsTree tt
70+
exception = input.docTreeInfo.docTree() instanceof ThrowsTree tt
7271
? ch.getException(tt) : null;
7372
input.tagId = exception == null
74-
? ch.getExceptionName(input.docTreeInfo.docTree).getSignature()
73+
? ch.getExceptionName(input.docTreeInfo.docTree()).getSignature()
7574
: utils.getFullyQualifiedName(exception);
7675
} else {
7776
exception = input.utils.findClass(input.element, input.tagId);
@@ -80,14 +79,14 @@ public void inherit(DocFinder.Input input, DocFinder.Output output) {
8079
for (ThrowsTree tt : input.utils.getThrowsTrees(input.element)) {
8180
Element exc = ch.getException(tt);
8281
if (exc != null && (input.tagId.equals(utils.getSimpleName(exc)) ||
83-
(input.tagId.equals(utils.getFullyQualifiedName(exc))))) {
82+
(input.tagId.equals(utils.getFullyQualifiedName(exc))))) {
8483
output.holder = input.element;
8584
output.holderTag = tt;
8685
output.inlineTags = ch.getBody(output.holderTag);
8786
output.tagList.add(tt);
8887
} else if (exception != null && exc != null &&
8988
utils.isTypeElement(exc) && utils.isTypeElement(exception) &&
90-
utils.isSubclassOf((TypeElement)exc, (TypeElement)exception)) {
89+
utils.isSubclassOf((TypeElement) exc, (TypeElement) exception)) {
9190
output.tagList.add(tt);
9291
}
9392
}
@@ -97,15 +96,16 @@ public void inherit(DocFinder.Input input, DocFinder.Output output) {
9796
* Add links for exceptions that are declared but not documented.
9897
*/
9998
private Content linkToUndocumentedDeclaredExceptions(List<? extends TypeMirror> declaredExceptionTypes,
100-
Set<String> alreadyDocumented, TagletWriter writer) {
99+
Set<String> alreadyDocumented,
100+
TagletWriter writer) {
101101
Utils utils = writer.configuration().utils;
102102
Content result = writer.getOutputInstance();
103103
//Add links to the exceptions declared but not documented.
104104
for (TypeMirror declaredExceptionType : declaredExceptionTypes) {
105105
TypeElement te = utils.asTypeElement(declaredExceptionType);
106106
if (te != null &&
107-
!alreadyDocumented.contains(declaredExceptionType.toString()) &&
108-
!alreadyDocumented.contains(utils.getFullyQualifiedName(te, false))) {
107+
!alreadyDocumented.contains(declaredExceptionType.toString()) &&
108+
!alreadyDocumented.contains(utils.getFullyQualifiedName(te, false))) {
109109
if (alreadyDocumented.isEmpty()) {
110110
result.add(writer.getThrowsHeader());
111111
}
@@ -121,8 +121,10 @@ private Content linkToUndocumentedDeclaredExceptions(List<? extends TypeMirror>
121121
* documented.
122122
*/
123123
private Content inheritThrowsDocumentation(Element holder,
124-
List<? extends TypeMirror> declaredExceptionTypes, Set<String> alreadyDocumented,
125-
Map<String, TypeMirror> typeSubstitutions, TagletWriter writer) {
124+
List<? extends TypeMirror> declaredExceptionTypes,
125+
Set<String> alreadyDocumented,
126+
Map<String, TypeMirror> typeSubstitutions,
127+
TagletWriter writer) {
126128
Utils utils = writer.configuration().utils;
127129
Content result = writer.getOutputInstance();
128130
if (utils.isMethod(holder)) {
@@ -157,7 +159,7 @@ public Content getAllBlockTagOutput(Element holder, TagletWriter writer) {
157159
Utils utils = writer.configuration().utils;
158160
ExecutableElement execHolder = (ExecutableElement) holder;
159161
ExecutableType instantiatedType = utils.asInstantiatedMethodType(
160-
writer.getCurrentPageElement(), (ExecutableElement)holder);
162+
writer.getCurrentPageElement(), (ExecutableElement) holder);
161163
List<? extends TypeMirror> thrownTypes = instantiatedType.getThrownTypes();
162164
Map<String, TypeMirror> typeSubstitutions = getSubstitutedThrownTypes(
163165
writer.configuration().utils.typeUtils,
@@ -186,8 +188,10 @@ public Content getAllBlockTagOutput(Element holder, TagletWriter writer) {
186188
* @return the generated content for the tags
187189
*/
188190
protected Content throwsTagsOutput(Map<List<? extends ThrowsTree>, ExecutableElement> throwTags,
189-
TagletWriter writer, Set<String> alreadyDocumented,
190-
Map<String,TypeMirror> typeSubstitutions, boolean allowDuplicates) {
191+
TagletWriter writer,
192+
Set<String> alreadyDocumented,
193+
Map<String, TypeMirror> typeSubstitutions,
194+
boolean allowDuplicates) {
191195
Utils utils = writer.configuration().utils;
192196
Content result = writer.getOutputInstance();
193197
if (!throwTags.isEmpty()) {
@@ -199,9 +203,9 @@ protected Content throwsTagsOutput(Map<List<? extends ThrowsTree>, ExecutableEle
199203
String excName = ch.getExceptionName(dt).toString();
200204
TypeMirror substituteType = typeSubstitutions.get(excName);
201205
if ((!allowDuplicates) &&
202-
(alreadyDocumented.contains(excName) ||
203-
(te != null && alreadyDocumented.contains(utils.getFullyQualifiedName(te, false)))) ||
204-
(substituteType != null && alreadyDocumented.contains(substituteType.toString()))) {
206+
(alreadyDocumented.contains(excName) ||
207+
(te != null && alreadyDocumented.contains(utils.getFullyQualifiedName(te, false)))) ||
208+
(substituteType != null && alreadyDocumented.contains(substituteType.toString()))) {
205209
continue;
206210
}
207211
if (alreadyDocumented.isEmpty()) {

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/CommentHelper.java

+8-10
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
package jdk.javadoc.internal.doclets.toolkit.util;
2727

28-
import java.util.ArrayList;
2928
import java.util.List;
3029
import java.util.stream.Collectors;
3130

@@ -578,10 +577,9 @@ public IdentifierTree getName(DocTree dtree) {
578577

579578
public List<? extends DocTree> getTags(DocTree dtree) {
580579
return new SimpleDocTreeVisitor<List<? extends DocTree>, Void>() {
581-
List<? extends DocTree> asList(String content) {
582-
List<DocTree> out = new ArrayList<>();
583-
out.add(configuration.cmtUtils.makeTextTree(content));
584-
return out;
580+
581+
private List<DocTree> asList(String content) {
582+
return List.of(configuration.cmtUtils.makeTextTree(content));
585583
}
586584

587585
@Override
@@ -611,7 +609,7 @@ public List<? extends DocTree> visitLiteral(LiteralTree node, Void p) {
611609

612610
@Override
613611
public List<? extends DocTree> visitProvides(ProvidesTree node, Void p) {
614-
return node.getDescription();
612+
return node.getDescription();
615613
}
616614

617615
@Override
@@ -631,7 +629,7 @@ public List<? extends DocTree> visitVersion(VersionTree node, Void p) {
631629

632630
@Override
633631
public List<? extends DocTree> visitParam(ParamTree node, Void p) {
634-
return node.getDescription();
632+
return node.getDescription();
635633
}
636634

637635
@Override
@@ -661,7 +659,7 @@ public List<? extends DocTree> visitSerialField(SerialFieldTree node, Void p) {
661659

662660
@Override
663661
public List<? extends DocTree> visitThrows(ThrowsTree node, Void p) {
664-
return node.getDescription();
662+
return node.getDescription();
665663
}
666664

667665
@Override
@@ -671,12 +669,12 @@ public List<? extends DocTree> visitUnknownBlockTag(UnknownBlockTagTree node, Vo
671669

672670
@Override
673671
public List<? extends DocTree> visitUses(UsesTree node, Void p) {
674-
return node.getDescription();
672+
return node.getDescription();
675673
}
676674

677675
@Override
678676
protected List<? extends DocTree> defaultAction(DocTree node, Void p) {
679-
return List.of();
677+
return List.of();
680678
}
681679
}.visit(dtree, null);
682680
}

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/DocFinder.java

+53-76
Original file line numberDiff line numberDiff line change
@@ -41,87 +41,67 @@
4141
*/
4242
public class DocFinder {
4343

44-
public static final class DocTreeInfo {
45-
public final DocTree docTree;
46-
public final Element element;
47-
48-
public DocTreeInfo() {
49-
this.docTree = null;
50-
this.element = null;
51-
}
52-
53-
public DocTreeInfo(DocTree docTree, Element baseElement) {
54-
this.docTree = docTree;
55-
this.element = baseElement;
56-
}
57-
58-
@Override
59-
public String toString() {
60-
return "DocTreeInfo{" + "docTree=" + docTree + ", element=" + element + '}';
61-
}
62-
}
44+
public record DocTreeInfo(DocTree docTree, Element element) { }
6345

6446
/**
6547
* The class that encapsulates the input.
6648
*/
6749
public static class Input {
50+
6851
/**
6952
* The element to search documentation from.
7053
*/
7154
public Element element;
55+
7256
/**
7357
* The taglet to search for documentation on behalf of. Null if we want
7458
* to search for overall documentation.
7559
*/
76-
public InheritableTaglet taglet = null;
60+
public InheritableTaglet taglet;
7761

7862
/**
7963
* The id of the tag to retrieve documentation for.
8064
*/
81-
public String tagId = null;
65+
public String tagId;
8266

8367
/**
8468
* The tag to retrieve documentation for. This is only used for the
85-
* inheritDoc tag.
69+
* {@code {@inheritDoc}} tag.
8670
*/
8771
public final DocTreeInfo docTreeInfo;
8872

8973
/**
9074
* True if we only want to search for the first sentence.
9175
*/
92-
public boolean isFirstSentence = false;
76+
public boolean isFirstSentence;
9377

9478
/**
95-
* True if we are looking for documentation to replace the inheritDocTag.
79+
* True if we are looking for documentation to replace the {@code {@inheritDoc}} tag.
9680
*/
97-
public boolean isInheritDocTag = false;
81+
public boolean isInheritDocTag;
9882

9983
/**
10084
* Used to distinguish between type variable param tags and regular
10185
* param tags.
10286
*/
103-
public boolean isTypeVariableParamTag = false;
87+
public boolean isTypeVariableParamTag;
10488

10589
public final Utils utils;
10690

107-
public Input(Utils utils, Element element, InheritableTaglet taglet, DocTreeInfo dtInfo,
108-
boolean isFirstSentence, boolean isInheritDocTag) {
109-
this.utils = utils;
110-
this.element = element;
111-
this.taglet = taglet;
112-
this.isFirstSentence = isFirstSentence;
113-
this.isInheritDocTag = isInheritDocTag;
114-
this.docTreeInfo = dtInfo;
115-
}
116-
117-
public Input(Utils utils, Element element, InheritableTaglet taglet, String tagId) {
91+
public Input(Utils utils,
92+
Element element,
93+
InheritableTaglet taglet,
94+
String tagId) {
11895
this(utils, element);
11996
this.taglet = taglet;
12097
this.tagId = tagId;
12198
}
12299

123-
public Input(Utils utils, Element element, InheritableTaglet taglet, String tagId,
124-
boolean isTypeVariableParamTag) {
100+
public Input(Utils utils,
101+
Element element,
102+
InheritableTaglet taglet,
103+
String tagId,
104+
boolean isTypeVariableParamTag) {
125105
this(utils, element);
126106
this.taglet = taglet;
127107
this.tagId = tagId;
@@ -134,32 +114,35 @@ public Input(Utils utils, Element element, InheritableTaglet taglet) {
134114
}
135115

136116
public Input(Utils utils, Element element) {
137-
if (element == null)
138-
throw new NullPointerException();
139-
this.element = element;
117+
this.element = Objects.requireNonNull(element);
140118
this.utils = utils;
141-
this.docTreeInfo = new DocTreeInfo();
119+
this.docTreeInfo = new DocTreeInfo(null, null);
142120
}
143121

144-
public Input(Utils utils, Element element, boolean isFirstSentence) {
145-
this(utils, element);
122+
public Input(Utils utils,
123+
Element element,
124+
InheritableTaglet taglet,
125+
DocTreeInfo dtInfo,
126+
boolean isFirstSentence,
127+
boolean isInheritDocTag) {
128+
this.utils = utils;
129+
this.element = Objects.requireNonNull(element);
130+
this.taglet = taglet;
146131
this.isFirstSentence = isFirstSentence;
132+
this.isInheritDocTag = isInheritDocTag;
133+
this.docTreeInfo = dtInfo;
147134
}
148135

149-
public Input copy(Utils utils) {
150-
if (this.element == null) {
151-
throw new NullPointerException();
152-
}
153-
Input clone = new Input(utils, this.element, this.taglet, this.docTreeInfo,
154-
this.isFirstSentence, this.isInheritDocTag);
155-
clone.tagId = this.tagId;
156-
clone.isTypeVariableParamTag = this.isTypeVariableParamTag;
157-
return clone;
136+
private Input copy() {
137+
var copy = new Input(utils, element, taglet, docTreeInfo,
138+
isFirstSentence, isInheritDocTag);
139+
copy.tagId = tagId;
140+
copy.isTypeVariableParamTag = isTypeVariableParamTag;
141+
return copy;
158142
}
159143

160144
/**
161-
* For debugging purposes
162-
* @return string representation
145+
* For debugging purposes.
163146
*/
164147
@Override
165148
public String toString() {
@@ -178,14 +161,15 @@ public String toString() {
178161
* The class that encapsulates the output.
179162
*/
180163
public static class Output {
164+
181165
/**
182166
* The tag that holds the documentation. Null if documentation
183167
* is not held by a tag.
184168
*/
185169
public DocTree holderTag;
186170

187171
/**
188-
* The Doc object that holds the documentation.
172+
* The element that holds the documentation.
189173
*/
190174
public Element holder;
191175

@@ -200,18 +184,16 @@ public static class Output {
200184
public boolean isValidInheritDocTag = true;
201185

202186
/**
203-
* When automatically inheriting throws tags, you sometime must inherit
204-
* more than one tag. For example if the element declares that it throws
205-
* IOException and the overridden element has throws tags for IOException and
187+
* When automatically inheriting throws tags, you sometimes must inherit
188+
* more than one tag. For example, if a method declares that it throws
189+
* IOException and the overridden method has {@code @throws} tags for IOException and
206190
* ZipException, both tags would be inherited because ZipException is a
207-
* subclass of IOException. This subclass of DocFinder.Output allows
208-
* multiple tag inheritance.
191+
* subclass of IOException. This allows multiple tag inheritance.
209192
*/
210-
public List<DocTree> tagList = new ArrayList<>();
193+
public final List<DocTree> tagList = new ArrayList<>();
211194

212195
/**
213-
* Returns a string representation for debugging purposes
214-
* @return string
196+
* For debugging purposes.
215197
*/
216198
@Override
217199
public String toString() {
@@ -226,9 +208,7 @@ public String toString() {
226208

227209
/**
228210
* Search for the requested comments in the given element. If it does not
229-
* have comments, return documentation from the overridden element if possible.
230-
* If the overridden element does not exist or does not have documentation to
231-
* inherit, search for documentation to inherit from implemented methods.
211+
* have comments, return the inherited comments if possible.
232212
*
233213
* @param input the input object used to perform the search.
234214
*
@@ -250,14 +230,15 @@ public static Output search(BaseConfiguration configuration, Input input) {
250230
input.taglet.inherit(input, output);
251231
}
252232

253-
if (output.inlineTags != null && !output.inlineTags.isEmpty()) {
233+
if (!output.inlineTags.isEmpty()) {
254234
return output;
255235
}
256236
output.isValidInheritDocTag = false;
257-
Input inheritedSearchInput = input.copy(configuration.utils);
237+
Input inheritedSearchInput = input.copy();
258238
inheritedSearchInput.isInheritDocTag = false;
259239
if (utils.isMethod(input.element)) {
260-
ExecutableElement overriddenMethod = utils.overriddenMethod((ExecutableElement) input.element);
240+
ExecutableElement m = (ExecutableElement) input.element;
241+
ExecutableElement overriddenMethod = utils.overriddenMethod(m);
261242
if (overriddenMethod != null) {
262243
inheritedSearchInput.element = overriddenMethod;
263244
output = search(configuration, inheritedSearchInput);
@@ -266,13 +247,9 @@ public static Output search(BaseConfiguration configuration, Input input) {
266247
return output;
267248
}
268249
}
269-
//NOTE: When we fix the bug where ClassDoc.interfaceTypes() does
270-
// not pass all implemented interfaces, we will use the
271-
// appropriate element here.
272250
TypeElement encl = utils.getEnclosingTypeElement(input.element);
273251
VisibleMemberTable vmt = configuration.getVisibleMemberTable(encl);
274-
List<ExecutableElement> implementedMethods =
275-
vmt.getImplementedMethods((ExecutableElement)input.element);
252+
List<ExecutableElement> implementedMethods = vmt.getImplementedMethods(m);
276253
for (ExecutableElement implementedMethod : implementedMethods) {
277254
inheritedSearchInput.element = implementedMethod;
278255
output = search(configuration, inheritedSearchInput);

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/Utils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2500,7 +2500,7 @@ private List<? extends ParamTree> getParamTrees(Element element, boolean isType
25002500
}
25012501

25022502
public List<? extends ReturnTree> getReturnTrees(Element element) {
2503-
return new ArrayList<>(getBlockTags(element, RETURN, ReturnTree.class));
2503+
return getBlockTags(element, RETURN, ReturnTree.class);
25042504
}
25052505

25062506
public List<? extends UsesTree> getUsesTrees(Element element) {

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/VisibleMemberTable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ List<VisibleMemberTable> getAllSuperinterfaces() {
202202
* a. The list may or may not contain simple overridden methods.
203203
* A simple overridden method is one that overrides a super method
204204
* with no specification changes as indicated by the existence of a
205-
* sole {@code @inheritDoc} or devoid of any API comments.
205+
* sole {@code {@inheritDoc}} or devoid of any API comments.
206206
* <p>
207207
* b.The list may contain (extra) members, inherited by inaccessible
208208
* super types, primarily package private types. These members are

0 commit comments

Comments
 (0)
Please sign in to comment.