public class io.ebeaninternal.server.text.json.DJsonBeanReader<T> implements io.ebean.text.json.JsonBeanReader<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebeaninternal.server.text.json.DJsonBeanReader
  super_class: java.lang.Object
{
  private final io.ebeaninternal.server.deploy.BeanDescriptor<T> desc;
    descriptor: Lio/ebeaninternal/server/deploy/BeanDescriptor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/ebeaninternal/server/deploy/BeanDescriptor<TT;>;

  private final io.ebeaninternal.api.json.SpiJsonReader readJson;
    descriptor: Lio/ebeaninternal/api/json/SpiJsonReader;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.ebeaninternal.server.deploy.BeanDescriptor<T>, io.ebeaninternal.api.json.SpiJsonReader);
    descriptor: (Lio/ebeaninternal/server/deploy/BeanDescriptor;Lio/ebeaninternal/api/json/SpiJsonReader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
        start local 1 // io.ebeaninternal.server.deploy.BeanDescriptor desc
        start local 2 // io.ebeaninternal.api.json.SpiJsonReader readJson
         0: .line 24
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 25
            aload 0 /* this */
            aload 1 /* desc */
            putfield io.ebeaninternal.server.text.json.DJsonBeanReader.desc:Lio/ebeaninternal/server/deploy/BeanDescriptor;
         2: .line 26
            aload 0 /* this */
            aload 2 /* readJson */
            putfield io.ebeaninternal.server.text.json.DJsonBeanReader.readJson:Lio/ebeaninternal/api/json/SpiJsonReader;
         3: .line 27
            return
        end local 2 // io.ebeaninternal.api.json.SpiJsonReader readJson
        end local 1 // io.ebeaninternal.server.deploy.BeanDescriptor desc
        end local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/ebeaninternal/server/text/json/DJsonBeanReader<TT;>;
            0    4     1      desc  Lio/ebeaninternal/server/deploy/BeanDescriptor<TT;>;
            0    4     2  readJson  Lio/ebeaninternal/api/json/SpiJsonReader;
    Signature: (Lio/ebeaninternal/server/deploy/BeanDescriptor<TT;>;Lio/ebeaninternal/api/json/SpiJsonReader;)V
    MethodParameters:
          Name  Flags
      desc      
      readJson  

  public void persistenceContextPut(, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
        start local 1 // java.lang.Object beanId
        start local 2 // java.lang.Object currentBean
         0: .line 31
            aload 0 /* this */
            getfield io.ebeaninternal.server.text.json.DJsonBeanReader.readJson:Lio/ebeaninternal/api/json/SpiJsonReader;
            aload 1 /* beanId */
            aload 2 /* currentBean */
            invokeinterface io.ebeaninternal.api.json.SpiJsonReader.persistenceContextPut:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 32
            return
        end local 2 // java.lang.Object currentBean
        end local 1 // java.lang.Object beanId
        end local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/ebeaninternal/server/text/json/DJsonBeanReader<TT;>;
            0    2     1       beanId  Ljava/lang/Object;
            0    2     2  currentBean  TT;
    Signature: (Ljava/lang/Object;TT;)V
    MethodParameters:
             Name  Flags
      beanId       
      currentBean  

  public io.ebean.bean.PersistenceContext getPersistenceContext();
    descriptor: ()Lio/ebean/bean/PersistenceContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
         0: .line 36
            aload 0 /* this */
            getfield io.ebeaninternal.server.text.json.DJsonBeanReader.readJson:Lio/ebeaninternal/api/json/SpiJsonReader;
            invokeinterface io.ebeaninternal.api.json.SpiJsonReader.getPersistenceContext:()Lio/ebean/bean/PersistenceContext;
            areturn
        end local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/text/json/DJsonBeanReader<TT;>;

  public T read();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
         0: .line 42
            aload 0 /* this */
            getfield io.ebeaninternal.server.text.json.DJsonBeanReader.desc:Lio/ebeaninternal/server/deploy/BeanDescriptor;
            aload 0 /* this */
            getfield io.ebeaninternal.server.text.json.DJsonBeanReader.readJson:Lio/ebeaninternal/api/json/SpiJsonReader;
            aconst_null
            invokevirtual io.ebeaninternal.server.deploy.BeanDescriptor.jsonRead:(Lio/ebeaninternal/api/json/SpiJsonReader;Ljava/lang/String;)Ljava/lang/Object;
         1: areturn
         2: .line 43
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 44
            new io.ebean.PersistenceIOException
            dup
            aload 1 /* e */
            invokespecial io.ebean.PersistenceIOException.<init>:(Ljava/lang/Exception;)V
            athrow
        end local 1 // java.io.IOException e
        end local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/ebeaninternal/server/text/json/DJsonBeanReader<TT;>;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Signature: ()TT;

  public io.ebean.text.json.JsonBeanReader<T> forJson(com.fasterxml.jackson.core.JsonParser, boolean);
    descriptor: (Lcom/fasterxml/jackson/core/JsonParser;Z)Lio/ebean/text/json/JsonBeanReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
        start local 1 // com.fasterxml.jackson.core.JsonParser moreJson
        start local 2 // boolean resetContext
         0: .line 50
            new io.ebeaninternal.server.text.json.DJsonBeanReader
            dup
            aload 0 /* this */
            getfield io.ebeaninternal.server.text.json.DJsonBeanReader.desc:Lio/ebeaninternal/server/deploy/BeanDescriptor;
            aload 0 /* this */
            getfield io.ebeaninternal.server.text.json.DJsonBeanReader.readJson:Lio/ebeaninternal/api/json/SpiJsonReader;
            aload 1 /* moreJson */
            iload 2 /* resetContext */
            invokeinterface io.ebeaninternal.api.json.SpiJsonReader.forJson:(Lcom/fasterxml/jackson/core/JsonParser;Z)Lio/ebeaninternal/api/json/SpiJsonReader;
            invokespecial io.ebeaninternal.server.text.json.DJsonBeanReader.<init>:(Lio/ebeaninternal/server/deploy/BeanDescriptor;Lio/ebeaninternal/api/json/SpiJsonReader;)V
            areturn
        end local 2 // boolean resetContext
        end local 1 // com.fasterxml.jackson.core.JsonParser moreJson
        end local 0 // io.ebeaninternal.server.text.json.DJsonBeanReader this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/ebeaninternal/server/text/json/DJsonBeanReader<TT;>;
            0    1     1      moreJson  Lcom/fasterxml/jackson/core/JsonParser;
            0    1     2  resetContext  Z
    Signature: (Lcom/fasterxml/jackson/core/JsonParser;Z)Lio/ebean/text/json/JsonBeanReader<TT;>;
    MethodParameters:
              Name  Flags
      moreJson      
      resetContext  
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/ebean/text/json/JsonBeanReader<TT;>;
SourceFile: "DJsonBeanReader.java"