public class org.eclipse.jface.text.Region implements org.eclipse.jface.text.IRegion
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jface.text.Region
  super_class: java.lang.Object
{
  private int fOffset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jface.text.Region this
        start local 1 // int offset
        start local 2 // int length
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
            iload 1 /* offset */
            putfield org.eclipse.jface.text.Region.fOffset:I
         2: .line 35
            aload 0 /* this */
            iload 2 /* length */
            putfield org.eclipse.jface.text.Region.fLength:I
         3: .line 36
            return
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.eclipse.jface.text.Region this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/jface/text/Region;
            0    4     1  offset  I
            0    4     2  length  I
    MethodParameters:
        Name  Flags
      offset  
      length  

  public int getLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.Region this
         0: .line 40
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fLength:I
            ireturn
        end local 0 // org.eclipse.jface.text.Region this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jface/text/Region;

  public int getOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.Region this
         0: .line 45
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fOffset:I
            ireturn
        end local 0 // org.eclipse.jface.text.Region this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jface/text/Region;

  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.eclipse.jface.text.Region this
        start local 1 // java.lang.Object o
         0: .line 50
            aload 1 /* o */
            instanceof org.eclipse.jface.text.IRegion
            ifeq 4
         1: .line 51
            aload 1 /* o */
            checkcast org.eclipse.jface.text.IRegion
            astore 2 /* r */
        start local 2 // org.eclipse.jface.text.IRegion r
         2: .line 52
            aload 2 /* r */
            invokeinterface org.eclipse.jface.text.IRegion.getOffset:()I
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fOffset:I
            if_icmpne 3
            aload 2 /* r */
            invokeinterface org.eclipse.jface.text.IRegion.getLength:()I
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fLength:I
            if_icmpne 3
            iconst_1
            ireturn
      StackMap locals: org.eclipse.jface.text.IRegion
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // org.eclipse.jface.text.IRegion r
         4: .line 54
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.jface.text.Region this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jface/text/Region;
            0    5     1     o  Ljava/lang/Object;
            2    4     2     r  Lorg/eclipse/jface/text/IRegion;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.Region this
         0: .line 59
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fOffset:I
            bipush 24
            ishl
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fLength:I
            bipush 16
            ishl
            ior
            ireturn
        end local 0 // org.eclipse.jface.text.Region this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jface/text/Region;

  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.eclipse.jface.text.Region this
         0: .line 64
            new java.lang.StringBuilder
            dup
            ldc "offset: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fOffset:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", length: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.jface.text.Region.fLength:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jface.text.Region this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jface/text/Region;
}
SourceFile: "Region.java"