@@ -304,7 +304,7 @@ class NewInstance extends MethodCall {
304
304
}
305
305
306
306
/**
307
- * A `MethodCall` on a `Class` element .
307
+ * A `MethodCall` on a `Class` instance .
308
308
*/
309
309
class ClassMethodCall extends MethodCall {
310
310
ClassMethodCall ( ) { this .getCallee ( ) .getDeclaringType ( ) instanceof TypeClass }
@@ -326,34 +326,34 @@ deprecated class ClassMethodAccess = ClassMethodCall;
326
326
/**
327
327
* A call to `Class.getConstructors(..)` or `Class.getDeclaredConstructors(..)`.
328
328
*/
329
- class ReflectiveConstructorsCall extends ClassMethodCall {
330
- ReflectiveConstructorsCall ( ) {
329
+ class ReflectiveGetConstructorsCall extends ClassMethodCall {
330
+ ReflectiveGetConstructorsCall ( ) {
331
331
this .getCallee ( ) .hasName ( "getConstructors" ) or
332
332
this .getCallee ( ) .hasName ( "getDeclaredConstructors" )
333
333
}
334
334
}
335
335
336
- /** DEPRECATED: Alias for `ReflectiveConstructorsCall `. */
337
- deprecated class ReflectiveConstructorsAccess = ReflectiveConstructorsCall ;
336
+ /** DEPRECATED: Alias for `ReflectiveGetConstructorsCall `. */
337
+ deprecated class ReflectiveConstructorsAccess = ReflectiveGetConstructorsCall ;
338
338
339
339
/**
340
340
* A call to `Class.getMethods(..)` or `Class.getDeclaredMethods(..)`.
341
341
*/
342
- class ReflectiveMethodsCall extends ClassMethodCall {
343
- ReflectiveMethodsCall ( ) {
342
+ class ReflectiveGetMethodsCall extends ClassMethodCall {
343
+ ReflectiveGetMethodsCall ( ) {
344
344
this .getCallee ( ) .hasName ( "getMethods" ) or
345
345
this .getCallee ( ) .hasName ( "getDeclaredMethods" )
346
346
}
347
347
}
348
348
349
- /** DEPRECATED: Alias for `ReflectiveMethodsCall `. */
350
- deprecated class ReflectiveMethodsAccess = ReflectiveMethodsCall ;
349
+ /** DEPRECATED: Alias for `ReflectiveGetMethodsCall `. */
350
+ deprecated class ReflectiveMethodsAccess = ReflectiveGetMethodsCall ;
351
351
352
352
/**
353
353
* A call to `Class.getMethod(..)` or `Class.getDeclaredMethod(..)`.
354
354
*/
355
- class ReflectiveMethodCall extends ClassMethodCall {
356
- ReflectiveMethodCall ( ) {
355
+ class ReflectiveGetMethodCall extends ClassMethodCall {
356
+ ReflectiveGetMethodCall ( ) {
357
357
this .getCallee ( ) .hasName ( "getMethod" ) or
358
358
this .getCallee ( ) .hasName ( "getDeclaredMethod" )
359
359
}
@@ -378,14 +378,14 @@ class ReflectiveMethodCall extends ClassMethodCall {
378
378
}
379
379
}
380
380
381
- /** DEPRECATED: Alias for `ReflectiveMethodCall `. */
382
- deprecated class ReflectiveMethodAccess = ReflectiveMethodCall ;
381
+ /** DEPRECATED: Alias for `ReflectiveGetMethodCall `. */
382
+ deprecated class ReflectiveMethodAccess = ReflectiveGetMethodCall ;
383
383
384
384
/**
385
385
* A call to `Class.getAnnotation(..)`.
386
386
*/
387
- class ReflectiveAnnotationCall extends ClassMethodCall {
388
- ReflectiveAnnotationCall ( ) { this .getCallee ( ) .hasName ( "getAnnotation" ) }
387
+ class ReflectiveGetAnnotationCall extends ClassMethodCall {
388
+ ReflectiveGetAnnotationCall ( ) { this .getCallee ( ) .hasName ( "getAnnotation" ) }
389
389
390
390
/**
391
391
* Gets a possible annotation type for this reflective annotation access.
@@ -395,14 +395,14 @@ class ReflectiveAnnotationCall extends ClassMethodCall {
395
395
}
396
396
}
397
397
398
- /** DEPRECATED: Alias for `ReflectiveAnnotationCall `. */
399
- deprecated class ReflectiveAnnotationAccess = ReflectiveAnnotationCall ;
398
+ /** DEPRECATED: Alias for `ReflectiveGetAnnotationCall `. */
399
+ deprecated class ReflectiveAnnotationAccess = ReflectiveGetAnnotationCall ;
400
400
401
401
/**
402
402
* A call to `Class.getField(..)` that accesses a field.
403
403
*/
404
- class ReflectiveFieldCall extends ClassMethodCall {
405
- ReflectiveFieldCall ( ) {
404
+ class ReflectiveGetFieldCall extends ClassMethodCall {
405
+ ReflectiveGetFieldCall ( ) {
406
406
this .getCallee ( ) .hasName ( "getField" ) or
407
407
this .getCallee ( ) .hasName ( "getDeclaredField" )
408
408
}
@@ -424,5 +424,5 @@ class ReflectiveFieldCall extends ClassMethodCall {
424
424
}
425
425
}
426
426
427
- /** DEPRECATED: Alias for `ReflectiveFieldCall `. */
428
- deprecated class ReflectiveFieldAccess = ReflectiveFieldCall ;
427
+ /** DEPRECATED: Alias for `ReflectiveGetFieldCall `. */
428
+ deprecated class ReflectiveFieldAccess = ReflectiveGetFieldCall ;
0 commit comments