@@ -304,7 +304,7 @@ class NewInstance extends MethodCall {
304304}
305305
306306/**
307- * A `MethodCall` on a `Class` element .
307+ * A `MethodCall` on a `Class` instance .
308308 */
309309class ClassMethodCall extends MethodCall {
310310 ClassMethodCall ( ) { this .getCallee ( ) .getDeclaringType ( ) instanceof TypeClass }
@@ -326,34 +326,34 @@ deprecated class ClassMethodAccess = ClassMethodCall;
326326/**
327327 * A call to `Class.getConstructors(..)` or `Class.getDeclaredConstructors(..)`.
328328 */
329- class ReflectiveConstructorsCall extends ClassMethodCall {
330- ReflectiveConstructorsCall ( ) {
329+ class ReflectiveGetConstructorsCall extends ClassMethodCall {
330+ ReflectiveGetConstructorsCall ( ) {
331331 this .getCallee ( ) .hasName ( "getConstructors" ) or
332332 this .getCallee ( ) .hasName ( "getDeclaredConstructors" )
333333 }
334334}
335335
336- /** DEPRECATED: Alias for `ReflectiveConstructorsCall `. */
337- deprecated class ReflectiveConstructorsAccess = ReflectiveConstructorsCall ;
336+ /** DEPRECATED: Alias for `ReflectiveGetConstructorsCall `. */
337+ deprecated class ReflectiveConstructorsAccess = ReflectiveGetConstructorsCall ;
338338
339339/**
340340 * A call to `Class.getMethods(..)` or `Class.getDeclaredMethods(..)`.
341341 */
342- class ReflectiveMethodsCall extends ClassMethodCall {
343- ReflectiveMethodsCall ( ) {
342+ class ReflectiveGetMethodsCall extends ClassMethodCall {
343+ ReflectiveGetMethodsCall ( ) {
344344 this .getCallee ( ) .hasName ( "getMethods" ) or
345345 this .getCallee ( ) .hasName ( "getDeclaredMethods" )
346346 }
347347}
348348
349- /** DEPRECATED: Alias for `ReflectiveMethodsCall `. */
350- deprecated class ReflectiveMethodsAccess = ReflectiveMethodsCall ;
349+ /** DEPRECATED: Alias for `ReflectiveGetMethodsCall `. */
350+ deprecated class ReflectiveMethodsAccess = ReflectiveGetMethodsCall ;
351351
352352/**
353353 * A call to `Class.getMethod(..)` or `Class.getDeclaredMethod(..)`.
354354 */
355- class ReflectiveMethodCall extends ClassMethodCall {
356- ReflectiveMethodCall ( ) {
355+ class ReflectiveGetMethodCall extends ClassMethodCall {
356+ ReflectiveGetMethodCall ( ) {
357357 this .getCallee ( ) .hasName ( "getMethod" ) or
358358 this .getCallee ( ) .hasName ( "getDeclaredMethod" )
359359 }
@@ -378,14 +378,14 @@ class ReflectiveMethodCall extends ClassMethodCall {
378378 }
379379}
380380
381- /** DEPRECATED: Alias for `ReflectiveMethodCall `. */
382- deprecated class ReflectiveMethodAccess = ReflectiveMethodCall ;
381+ /** DEPRECATED: Alias for `ReflectiveGetMethodCall `. */
382+ deprecated class ReflectiveMethodAccess = ReflectiveGetMethodCall ;
383383
384384/**
385385 * A call to `Class.getAnnotation(..)`.
386386 */
387- class ReflectiveAnnotationCall extends ClassMethodCall {
388- ReflectiveAnnotationCall ( ) { this .getCallee ( ) .hasName ( "getAnnotation" ) }
387+ class ReflectiveGetAnnotationCall extends ClassMethodCall {
388+ ReflectiveGetAnnotationCall ( ) { this .getCallee ( ) .hasName ( "getAnnotation" ) }
389389
390390 /**
391391 * Gets a possible annotation type for this reflective annotation access.
@@ -395,14 +395,14 @@ class ReflectiveAnnotationCall extends ClassMethodCall {
395395 }
396396}
397397
398- /** DEPRECATED: Alias for `ReflectiveAnnotationCall `. */
399- deprecated class ReflectiveAnnotationAccess = ReflectiveAnnotationCall ;
398+ /** DEPRECATED: Alias for `ReflectiveGetAnnotationCall `. */
399+ deprecated class ReflectiveAnnotationAccess = ReflectiveGetAnnotationCall ;
400400
401401/**
402402 * A call to `Class.getField(..)` that accesses a field.
403403 */
404- class ReflectiveFieldCall extends ClassMethodCall {
405- ReflectiveFieldCall ( ) {
404+ class ReflectiveGetFieldCall extends ClassMethodCall {
405+ ReflectiveGetFieldCall ( ) {
406406 this .getCallee ( ) .hasName ( "getField" ) or
407407 this .getCallee ( ) .hasName ( "getDeclaredField" )
408408 }
@@ -424,5 +424,5 @@ class ReflectiveFieldCall extends ClassMethodCall {
424424 }
425425}
426426
427- /** DEPRECATED: Alias for `ReflectiveFieldCall `. */
428- deprecated class ReflectiveFieldAccess = ReflectiveFieldCall ;
427+ /** DEPRECATED: Alias for `ReflectiveGetFieldCall `. */
428+ deprecated class ReflectiveFieldAccess = ReflectiveGetFieldCall ;
0 commit comments