public class com.sun.rowset.internal.InsertRow extends com.sun.rowset.internal.BaseRow implements java.io.Serializable, java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.rowset.internal.InsertRow
  super_class: com.sun.rowset.internal.BaseRow
{
  private java.util.BitSet colsInserted;
    descriptor: Ljava/util/BitSet;
    flags: (0x0002) ACC_PRIVATE

  private int cols;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private com.sun.rowset.JdbcRowSetResourceBundle resBundle;
    descriptor: Lcom/sun/rowset/JdbcRowSetResourceBundle;
    flags: (0x0002) ACC_PRIVATE

  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 1066099658102869344

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.sun.rowset.internal.InsertRow this
        start local 1 // int numCols
         0: .line 67
            aload 0 /* this */
            invokespecial com.sun.rowset.internal.BaseRow.<init>:()V
         1: .line 68
            aload 0 /* this */
            iload 1 /* numCols */
            anewarray java.lang.Object
            putfield com.sun.rowset.internal.InsertRow.origVals:[Ljava/lang/Object;
         2: .line 69
            aload 0 /* this */
            new java.util.BitSet
            dup
            iload 1 /* numCols */
            invokespecial java.util.BitSet.<init>:(I)V
            putfield com.sun.rowset.internal.InsertRow.colsInserted:Ljava/util/BitSet;
         3: .line 70
            aload 0 /* this */
            iload 1 /* numCols */
            putfield com.sun.rowset.internal.InsertRow.cols:I
         4: .line 72
            aload 0 /* this */
            invokestatic com.sun.rowset.JdbcRowSetResourceBundle.getJdbcRowSetResourceBundle:()Lcom/sun/rowset/JdbcRowSetResourceBundle;
            putfield com.sun.rowset.internal.InsertRow.resBundle:Lcom/sun/rowset/JdbcRowSetResourceBundle;
         5: .line 73
            goto 8
      StackMap locals: com.sun.rowset.internal.InsertRow int
      StackMap stack: java.io.IOException
         6: astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         7: .line 74
            new java.lang.RuntimeException
            dup
            aload 2 /* ioe */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException ioe
         8: .line 76
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int numCols
        end local 0 // com.sun.rowset.internal.InsertRow this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lcom/sun/rowset/internal/InsertRow;
            0    9     1  numCols  I
            7    8     2      ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           4     5       6  Class java.io.IOException
    MethodParameters:
         Name  Flags
      numCols  

  protected void markColInserted(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.rowset.internal.InsertRow this
        start local 1 // int col
         0: .line 88
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.colsInserted:Ljava/util/BitSet;
            iload 1 /* col */
            invokevirtual java.util.BitSet.set:(I)V
         1: .line 89
            return
        end local 1 // int col
        end local 0 // com.sun.rowset.internal.InsertRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/rowset/internal/InsertRow;
            0    2     1   col  I
    MethodParameters:
      Name  Flags
      col   

  public boolean isCompleteRow(javax.sql.RowSetMetaData);
    descriptor: (Ljavax/sql/RowSetMetaData;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.rowset.internal.InsertRow this
        start local 1 // javax.sql.RowSetMetaData RowSetMD
         0: .line 102
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 6
         2: .line 103
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.colsInserted:Ljava/util/BitSet;
            iload 2 /* i */
            invokevirtual java.util.BitSet.get:(I)Z
            ifne 5
         3: .line 104
            aload 1 /* RowSetMD */
            iload 2 /* i */
            iconst_1
            iadd
            invokeinterface javax.sql.RowSetMetaData.isNullable:(I)I
            ifne 5
         4: .line 106
            iconst_0
            ireturn
         5: .line 102
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.cols:I
            if_icmplt 2
        end local 2 // int i
         7: .line 110
            iconst_1
            ireturn
        end local 1 // javax.sql.RowSetMetaData RowSetMD
        end local 0 // com.sun.rowset.internal.InsertRow this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/sun/rowset/internal/InsertRow;
            0    8     1  RowSetMD  Ljavax/sql/RowSetMetaData;
            1    7     2         i  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
          Name  Flags
      RowSetMD  

  public void initInsertRow();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.rowset.internal.InsertRow this
         0: .line 119
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 120
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.colsInserted:Ljava/util/BitSet;
            iload 1 /* i */
            invokevirtual java.util.BitSet.clear:(I)V
         3: .line 119
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.cols:I
            if_icmplt 2
        end local 1 // int i
         5: .line 122
            return
        end local 0 // com.sun.rowset.internal.InsertRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/rowset/internal/InsertRow;
            1    5     1     i  I

  public java.lang.Object getColumnObject(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.rowset.internal.InsertRow this
        start local 1 // int idx
         0: .line 136
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.colsInserted:Ljava/util/BitSet;
            iload 1 /* idx */
            iconst_1
            isub
            invokevirtual java.util.BitSet.get:(I)Z
            ifne 2
         1: .line 137
            new java.sql.SQLException
            dup
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.resBundle:Lcom/sun/rowset/JdbcRowSetResourceBundle;
            ldc "insertrow.novalue"
            invokevirtual com.sun.rowset.JdbcRowSetResourceBundle.handleGetObject:(Ljava/lang/String;)Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.origVals:[Ljava/lang/Object;
            iload 1 /* idx */
            iconst_1
            isub
            aaload
            areturn
        end local 1 // int idx
        end local 0 // com.sun.rowset.internal.InsertRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/rowset/internal/InsertRow;
            0    3     1   idx  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      idx   

  public void setColumnObject(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.rowset.internal.InsertRow this
        start local 1 // int idx
        start local 2 // java.lang.Object val
         0: .line 157
            aload 0 /* this */
            getfield com.sun.rowset.internal.InsertRow.origVals:[Ljava/lang/Object;
            iload 1 /* idx */
            iconst_1
            isub
            aload 2 /* val */
            aastore
         1: .line 158
            aload 0 /* this */
            iload 1 /* idx */
            iconst_1
            isub
            invokevirtual com.sun.rowset.internal.InsertRow.markColInserted:(I)V
         2: .line 159
            return
        end local 2 // java.lang.Object val
        end local 1 // int idx
        end local 0 // com.sun.rowset.internal.InsertRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/rowset/internal/InsertRow;
            0    3     1   idx  I
            0    3     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      idx   
      val   

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.rowset.internal.InsertRow this
        start local 1 // java.io.ObjectInputStream ois
         0: .line 168
            aload 1 /* ois */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 171
            aload 0 /* this */
            invokestatic com.sun.rowset.JdbcRowSetResourceBundle.getJdbcRowSetResourceBundle:()Lcom/sun/rowset/JdbcRowSetResourceBundle;
            putfield com.sun.rowset.internal.InsertRow.resBundle:Lcom/sun/rowset/JdbcRowSetResourceBundle;
         2: .line 172
            goto 5
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         4: .line 173
            new java.lang.RuntimeException
            dup
            aload 2 /* ioe */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException ioe
         5: .line 176
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.io.ObjectInputStream ois
        end local 0 // com.sun.rowset.internal.InsertRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/rowset/internal/InsertRow;
            0    6     1   ois  Ljava/io/ObjectInputStream;
            4    5     2   ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      ois   
}
SourceFile: "InsertRow.java"