41
41
*/
42
42
public class DocFinder {
43
43
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 ) { }
63
45
64
46
/**
65
47
* The class that encapsulates the input.
66
48
*/
67
49
public static class Input {
50
+
68
51
/**
69
52
* The element to search documentation from.
70
53
*/
71
54
public Element element ;
55
+
72
56
/**
73
57
* The taglet to search for documentation on behalf of. Null if we want
74
58
* to search for overall documentation.
75
59
*/
76
- public InheritableTaglet taglet = null ;
60
+ public InheritableTaglet taglet ;
77
61
78
62
/**
79
63
* The id of the tag to retrieve documentation for.
80
64
*/
81
- public String tagId = null ;
65
+ public String tagId ;
82
66
83
67
/**
84
68
* The tag to retrieve documentation for. This is only used for the
85
- * inheritDoc tag.
69
+ * {@code {@ inheritDoc}} tag.
86
70
*/
87
71
public final DocTreeInfo docTreeInfo ;
88
72
89
73
/**
90
74
* True if we only want to search for the first sentence.
91
75
*/
92
- public boolean isFirstSentence = false ;
76
+ public boolean isFirstSentence ;
93
77
94
78
/**
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 .
96
80
*/
97
- public boolean isInheritDocTag = false ;
81
+ public boolean isInheritDocTag ;
98
82
99
83
/**
100
84
* Used to distinguish between type variable param tags and regular
101
85
* param tags.
102
86
*/
103
- public boolean isTypeVariableParamTag = false ;
87
+ public boolean isTypeVariableParamTag ;
104
88
105
89
public final Utils utils ;
106
90
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 ) {
118
95
this (utils , element );
119
96
this .taglet = taglet ;
120
97
this .tagId = tagId ;
121
98
}
122
99
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 ) {
125
105
this (utils , element );
126
106
this .taglet = taglet ;
127
107
this .tagId = tagId ;
@@ -134,32 +114,35 @@ public Input(Utils utils, Element element, InheritableTaglet taglet) {
134
114
}
135
115
136
116
public Input (Utils utils , Element element ) {
137
- if (element == null )
138
- throw new NullPointerException ();
139
- this .element = element ;
117
+ this .element = Objects .requireNonNull (element );
140
118
this .utils = utils ;
141
- this .docTreeInfo = new DocTreeInfo ();
119
+ this .docTreeInfo = new DocTreeInfo (null , null );
142
120
}
143
121
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 ;
146
131
this .isFirstSentence = isFirstSentence ;
132
+ this .isInheritDocTag = isInheritDocTag ;
133
+ this .docTreeInfo = dtInfo ;
147
134
}
148
135
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 ;
158
142
}
159
143
160
144
/**
161
- * For debugging purposes
162
- * @return string representation
145
+ * For debugging purposes.
163
146
*/
164
147
@ Override
165
148
public String toString () {
@@ -178,14 +161,15 @@ public String toString() {
178
161
* The class that encapsulates the output.
179
162
*/
180
163
public static class Output {
164
+
181
165
/**
182
166
* The tag that holds the documentation. Null if documentation
183
167
* is not held by a tag.
184
168
*/
185
169
public DocTree holderTag ;
186
170
187
171
/**
188
- * The Doc object that holds the documentation.
172
+ * The element that holds the documentation.
189
173
*/
190
174
public Element holder ;
191
175
@@ -200,18 +184,16 @@ public static class Output {
200
184
public boolean isValidInheritDocTag = true ;
201
185
202
186
/**
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
206
190
* 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.
209
192
*/
210
- public List <DocTree > tagList = new ArrayList <>();
193
+ public final List <DocTree > tagList = new ArrayList <>();
211
194
212
195
/**
213
- * Returns a string representation for debugging purposes
214
- * @return string
196
+ * For debugging purposes.
215
197
*/
216
198
@ Override
217
199
public String toString () {
@@ -226,9 +208,7 @@ public String toString() {
226
208
227
209
/**
228
210
* 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.
232
212
*
233
213
* @param input the input object used to perform the search.
234
214
*
@@ -250,14 +230,15 @@ public static Output search(BaseConfiguration configuration, Input input) {
250
230
input .taglet .inherit (input , output );
251
231
}
252
232
253
- if (output . inlineTags != null && !output .inlineTags .isEmpty ()) {
233
+ if (!output .inlineTags .isEmpty ()) {
254
234
return output ;
255
235
}
256
236
output .isValidInheritDocTag = false ;
257
- Input inheritedSearchInput = input .copy (configuration . utils );
237
+ Input inheritedSearchInput = input .copy ();
258
238
inheritedSearchInput .isInheritDocTag = false ;
259
239
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 );
261
242
if (overriddenMethod != null ) {
262
243
inheritedSearchInput .element = overriddenMethod ;
263
244
output = search (configuration , inheritedSearchInput );
@@ -266,13 +247,9 @@ public static Output search(BaseConfiguration configuration, Input input) {
266
247
return output ;
267
248
}
268
249
}
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.
272
250
TypeElement encl = utils .getEnclosingTypeElement (input .element );
273
251
VisibleMemberTable vmt = configuration .getVisibleMemberTable (encl );
274
- List <ExecutableElement > implementedMethods =
275
- vmt .getImplementedMethods ((ExecutableElement )input .element );
252
+ List <ExecutableElement > implementedMethods = vmt .getImplementedMethods (m );
276
253
for (ExecutableElement implementedMethod : implementedMethods ) {
277
254
inheritedSearchInput .element = implementedMethod ;
278
255
output = search (configuration , inheritedSearchInput );
0 commit comments