Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for MethodInvokable (0.06 seconds)

  1. android/guava/src/com/google/common/reflect/Invokable.java

      abstract Type[] getGenericExceptionTypes();
    
      abstract Annotation[][] getParameterAnnotations();
    
      abstract Type getGenericReturnType();
    
      static class MethodInvokable<T> extends Invokable<T, Object> {
    
        final Method method;
    
        MethodInvokable(Method method) {
          super(method);
          this.method = method;
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 18.5K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

        checkArgument(
            this.someRawTypeIsSubclassOf(method.getDeclaringClass()),
            "%s not declared by %s",
            method,
            this);
        return new Invokable.MethodInvokable<T>(method) {
          @Override
          Type getGenericReturnType() {
            return getCovariantTypeResolver().resolveType(super.getGenericReturnType());
          }
    
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.8K bytes
    - Click Count (0)
Back to Top