public class org.hibernate.boot.model.CustomSql
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.boot.model.CustomSql
  super_class: java.lang.Object
{
  private final java.lang.String sql;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean isCallable;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle checkStyle;
    descriptor: Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String, boolean, org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle);
    descriptor: (Ljava/lang/String;ZLorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.hibernate.boot.model.CustomSql this
        start local 1 // java.lang.String sql
        start local 2 // boolean callable
        start local 3 // org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle checkStyle
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 23
            aload 0 /* this */
            aload 1 /* sql */
            putfield org.hibernate.boot.model.CustomSql.sql:Ljava/lang/String;
         2: .line 24
            aload 0 /* this */
            iload 2 /* callable */
            putfield org.hibernate.boot.model.CustomSql.isCallable:Z
         3: .line 25
            aload 0 /* this */
            aload 3 /* checkStyle */
            putfield org.hibernate.boot.model.CustomSql.checkStyle:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
         4: .line 26
            return
        end local 3 // org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle checkStyle
        end local 2 // boolean callable
        end local 1 // java.lang.String sql
        end local 0 // org.hibernate.boot.model.CustomSql this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/hibernate/boot/model/CustomSql;
            0    5     1         sql  Ljava/lang/String;
            0    5     2    callable  Z
            0    5     3  checkStyle  Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    MethodParameters:
            Name  Flags
      sql         
      callable    
      checkStyle  

  public java.lang.String getSql();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.boot.model.CustomSql this
         0: .line 29
            aload 0 /* this */
            getfield org.hibernate.boot.model.CustomSql.sql:Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.boot.model.CustomSql this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/boot/model/CustomSql;

  public boolean isCallable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.boot.model.CustomSql this
         0: .line 33
            aload 0 /* this */
            getfield org.hibernate.boot.model.CustomSql.isCallable:Z
            ireturn
        end local 0 // org.hibernate.boot.model.CustomSql this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/boot/model/CustomSql;

  public org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle getCheckStyle();
    descriptor: ()Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.boot.model.CustomSql this
         0: .line 37
            aload 0 /* this */
            getfield org.hibernate.boot.model.CustomSql.checkStyle:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            areturn
        end local 0 // org.hibernate.boot.model.CustomSql this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/boot/model/CustomSql;
}
SourceFile: "CustomSql.java"