MCPcopy Create free account
hub / github.com/antlr/codebuff / invoke

Method invoke

corpus/java/training/guava/reflect/Invokable.java:98–103  ·  view source on GitHub ↗
(@Nullable T receiver, Object... args)

Source from the content-addressed store, hash-verified

96 */
97 // All subclasses are owned by us and we'll make sure to get the R type right.
98 @SuppressWarnings("unchecked")
99 @CanIgnoreReturnValue
100 public final R invoke(@Nullable T receiver, Object... args)
101 throws InvocationTargetException, IllegalAccessException {
102 return (R) invokeInternal(receiver, checkNotNull(args));
103 }
104
105 /** Returns the return type of this {@code Invokable}. */
106 // All subclasses are owned by us and we'll make sure to get the R type right.

Callers 9

invokeInternalMethod · 0.45
suppressMethod · 0.45
getJLAMethod · 0.45
cleanUpMethod · 0.45
getPropertyMethod · 0.45
processMethod · 0.45

Calls 2

invokeInternalMethod · 0.95
checkNotNullMethod · 0.45

Tested by 1

processMethod · 0.36