final class org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent
  super_class: java.lang.Object
{
  public final int startIndex;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final int endIndex;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  void <init>(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
        start local 1 // int startIndex
        start local 2 // int endIndex
         0: .line 98
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 99
            aload 0 /* this */
            iload 1 /* startIndex */
            putfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.startIndex:I
         2: .line 100
            aload 0 /* this */
            iload 2 /* endIndex */
            putfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.endIndex:I
         3: .line 101
            return
        end local 2 // int endIndex
        end local 1 // int startIndex
        end local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm$ColumnContent;
            0    4     1  startIndex  I
            0    4     2    endIndex  I
    MethodParameters:
            Name  Flags
      startIndex  
      endIndex    

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
         0: .line 105
            aload 0 /* this */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.startIndex:I
            bipush 16
            ishl
            aload 0 /* this */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.endIndex:I
            ior
            ireturn
        end local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm$ColumnContent;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
        start local 1 // java.lang.Object obj
         0: .line 110
            aload 1 /* obj */
            instanceof org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent
            ifne 2
         1: .line 111
            iconst_0
            ireturn
         2: .line 113
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent
            astore 2 /* other */
        start local 2 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent other
         3: .line 114
            aload 2 /* other */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.startIndex:I
            aload 0 /* this */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.startIndex:I
            if_icmpne 4
            aload 2 /* other */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.endIndex:I
            aload 0 /* this */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.endIndex:I
            if_icmpne 4
            iconst_1
            ireturn
      StackMap locals: org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent other
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm$ColumnContent;
            0    5     1    obj  Ljava/lang/Object;
            3    5     2  other  Lorg/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm$ColumnContent;
    MethodParameters:
      Name  Flags
      obj   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
         0: .line 120
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.startIndex:I
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "-"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent.endIndex:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm$ColumnContent;
}
SourceFile: "BalancingColumnBreakingAlgorithm.java"
NestHost: org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm
InnerClasses:
  private final ColumnContent = org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm$ColumnContent of org.apache.fop.layoutmgr.BalancingColumnBreakingAlgorithm