public final class com.google.inject.spi.InjectionRequest<T> implements com.google.inject.spi.Element
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.inject.spi.InjectionRequest
  super_class: java.lang.Object
{
  private final java.lang.Object source;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.google.inject.TypeLiteral<T> type;
    descriptor: Lcom/google/inject/TypeLiteral;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/inject/TypeLiteral<TT;>;

  private final T instance;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TT;

  public void <init>(, com.google.inject.TypeLiteral<T>, );
    descriptor: (Ljava/lang/Object;Lcom/google/inject/TypeLiteral;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.google.inject.spi.InjectionRequest this
        start local 1 // java.lang.Object source
        start local 2 // com.google.inject.TypeLiteral type
        start local 3 // java.lang.Object instance
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            aload 1 /* source */
            ldc "source"
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield com.google.inject.spi.InjectionRequest.source:Ljava/lang/Object;
         2: .line 45
            aload 0 /* this */
            aload 2 /* type */
            ldc "type"
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.google.inject.TypeLiteral
            putfield com.google.inject.spi.InjectionRequest.type:Lcom/google/inject/TypeLiteral;
         3: .line 46
            aload 0 /* this */
            aload 3 /* instance */
            ldc "instance"
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield com.google.inject.spi.InjectionRequest.instance:Ljava/lang/Object;
         4: .line 47
            return
        end local 3 // java.lang.Object instance
        end local 2 // com.google.inject.TypeLiteral type
        end local 1 // java.lang.Object source
        end local 0 // com.google.inject.spi.InjectionRequest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/google/inject/spi/InjectionRequest<TT;>;
            0    5     1    source  Ljava/lang/Object;
            0    5     2      type  Lcom/google/inject/TypeLiteral<TT;>;
            0    5     3  instance  TT;
    Signature: (Ljava/lang/Object;Lcom/google/inject/TypeLiteral<TT;>;TT;)V
    MethodParameters:
          Name  Flags
      source    
      type      
      instance  

  public java.lang.Object getSource();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.inject.spi.InjectionRequest this
         0: .line 51
            aload 0 /* this */
            getfield com.google.inject.spi.InjectionRequest.source:Ljava/lang/Object;
            areturn
        end local 0 // com.google.inject.spi.InjectionRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/inject/spi/InjectionRequest<TT;>;

  public T getInstance();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.inject.spi.InjectionRequest this
         0: .line 55
            aload 0 /* this */
            getfield com.google.inject.spi.InjectionRequest.instance:Ljava/lang/Object;
            areturn
        end local 0 // com.google.inject.spi.InjectionRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/inject/spi/InjectionRequest<TT;>;
    Signature: ()TT;

  public com.google.inject.TypeLiteral<T> getType();
    descriptor: ()Lcom/google/inject/TypeLiteral;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.inject.spi.InjectionRequest this
         0: .line 59
            aload 0 /* this */
            getfield com.google.inject.spi.InjectionRequest.type:Lcom/google/inject/TypeLiteral;
            areturn
        end local 0 // com.google.inject.spi.InjectionRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/inject/spi/InjectionRequest<TT;>;
    Signature: ()Lcom/google/inject/TypeLiteral<TT;>;

  public java.util.Set<com.google.inject.spi.InjectionPoint> getInjectionPoints();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.inject.spi.InjectionRequest this
         0: .line 75
            aload 0 /* this */
            getfield com.google.inject.spi.InjectionRequest.instance:Ljava/lang/Object;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokestatic com.google.inject.spi.InjectionPoint.forInstanceMethodsAndFields:(Ljava/lang/Class;)Ljava/util/Set;
            areturn
        end local 0 // com.google.inject.spi.InjectionRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/inject/spi/InjectionRequest<TT;>;
    Exceptions:
      throws com.google.inject.ConfigurationException
    Signature: ()Ljava/util/Set<Lcom/google/inject/spi/InjectionPoint;>;

  public <R> R acceptVisitor(com.google.inject.spi.ElementVisitor<R>);
    descriptor: (Lcom/google/inject/spi/ElementVisitor;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.inject.spi.InjectionRequest this
        start local 1 // com.google.inject.spi.ElementVisitor visitor
         0: .line 80
            aload 1 /* visitor */
            aload 0 /* this */
            invokeinterface com.google.inject.spi.ElementVisitor.visit:(Lcom/google/inject/spi/InjectionRequest;)Ljava/lang/Object;
            areturn
        end local 1 // com.google.inject.spi.ElementVisitor visitor
        end local 0 // com.google.inject.spi.InjectionRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/inject/spi/InjectionRequest<TT;>;
            0    1     1  visitor  Lcom/google/inject/spi/ElementVisitor<TR;>;
    Signature: <R:Ljava/lang/Object;>(Lcom/google/inject/spi/ElementVisitor<TR;>;)TR;
    MethodParameters:
         Name  Flags
      visitor  

  public void applyTo(com.google.inject.Binder);
    descriptor: (Lcom/google/inject/Binder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.inject.spi.InjectionRequest this
        start local 1 // com.google.inject.Binder binder
         0: .line 85
            aload 1 /* binder */
            aload 0 /* this */
            invokevirtual com.google.inject.spi.InjectionRequest.getSource:()Ljava/lang/Object;
            invokeinterface com.google.inject.Binder.withSource:(Ljava/lang/Object;)Lcom/google/inject/Binder;
            aload 0 /* this */
            getfield com.google.inject.spi.InjectionRequest.type:Lcom/google/inject/TypeLiteral;
            aload 0 /* this */
            getfield com.google.inject.spi.InjectionRequest.instance:Ljava/lang/Object;
            invokeinterface com.google.inject.Binder.requestInjection:(Lcom/google/inject/TypeLiteral;Ljava/lang/Object;)V
         1: .line 86
            return
        end local 1 // com.google.inject.Binder binder
        end local 0 // com.google.inject.spi.InjectionRequest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/google/inject/spi/InjectionRequest<TT;>;
            0    2     1  binder  Lcom/google/inject/Binder;
    MethodParameters:
        Name  Flags
      binder  
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lcom/google/inject/spi/Element;
SourceFile: "InjectionRequest.java"