public final class android.view.textservice.SentenceSuggestionsInfo implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.view.textservice.SentenceSuggestionsInfo
  super_class: java.lang.Object
{
  private final android.view.textservice.SuggestionsInfo[] mSuggestionsInfos;
    descriptor: [Landroid/view/textservice/SuggestionsInfo;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] mOffsets;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] mLengths;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public static final android.os.Parcelable$Creator<android.view.textservice.SentenceSuggestionsInfo> CREATOR;
    descriptor: Landroid/os/Parcelable$Creator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Landroid/os/Parcelable$Creator<Landroid/view/textservice/SentenceSuggestionsInfo;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 133
            new android.view.textservice.SentenceSuggestionsInfo$1
            dup
            invokespecial android.view.textservice.SentenceSuggestionsInfo$1.<init>:()V
         1: .line 132
            putstatic android.view.textservice.SentenceSuggestionsInfo.CREATOR:Landroid/os/Parcelable$Creator;
         2: .line 143
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(android.view.textservice.SuggestionsInfo[], int[], int[]);
    descriptor: ([Landroid/view/textservice/SuggestionsInfo;[I[I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
        start local 1 // android.view.textservice.SuggestionsInfo[] suggestionsInfos
        start local 2 // int[] offsets
        start local 3 // int[] lengths
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 1 /* suggestionsInfos */
            ifnull 2
            aload 2 /* offsets */
            ifnull 2
            aload 3 /* lengths */
            ifnonnull 3
         2: .line 48
      StackMap locals: android.view.textservice.SentenceSuggestionsInfo android.view.textservice.SuggestionsInfo[] int[] int[]
      StackMap stack:
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         3: .line 50
      StackMap locals:
      StackMap stack:
            aload 1 /* suggestionsInfos */
            arraylength
            aload 2 /* offsets */
            arraylength
            if_icmpne 4
            aload 2 /* offsets */
            arraylength
            aload 3 /* lengths */
            arraylength
            if_icmpeq 5
         4: .line 51
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         5: .line 53
      StackMap locals:
      StackMap stack:
            aload 1 /* suggestionsInfos */
            arraylength
            istore 4 /* infoSize */
        start local 4 // int infoSize
         6: .line 54
            aload 0 /* this */
            aload 1 /* suggestionsInfos */
            iload 4 /* infoSize */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            checkcast android.view.textservice.SuggestionsInfo[]
            putfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
         7: .line 55
            aload 0 /* this */
            aload 2 /* offsets */
            iload 4 /* infoSize */
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield android.view.textservice.SentenceSuggestionsInfo.mOffsets:[I
         8: .line 56
            aload 0 /* this */
            aload 3 /* lengths */
            iload 4 /* infoSize */
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield android.view.textservice.SentenceSuggestionsInfo.mLengths:[I
         9: .line 57
            return
        end local 4 // int infoSize
        end local 3 // int[] lengths
        end local 2 // int[] offsets
        end local 1 // android.view.textservice.SuggestionsInfo[] suggestionsInfos
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   10     0              this  Landroid/view/textservice/SentenceSuggestionsInfo;
            0   10     1  suggestionsInfos  [Landroid/view/textservice/SuggestionsInfo;
            0   10     2           offsets  [I
            0   10     3           lengths  [I
            6   10     4          infoSize  I
    MethodParameters:
                  Name  Flags
      suggestionsInfos  
      offsets           
      lengths           

  public void <init>(android.os.Parcel);
    descriptor: (Landroid/os/Parcel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
        start local 1 // android.os.Parcel source
         0: .line 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 60
            aload 1 /* source */
            invokevirtual android.os.Parcel.readInt:()I
            istore 2 /* infoSize */
        start local 2 // int infoSize
         2: .line 61
            aload 0 /* this */
            iload 2 /* infoSize */
            anewarray android.view.textservice.SuggestionsInfo
            putfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
         3: .line 62
            aload 1 /* source */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            getstatic android.view.textservice.SuggestionsInfo.CREATOR:Landroid/os/Parcelable$Creator;
            invokevirtual android.os.Parcel.readTypedArray:([Ljava/lang/Object;Landroid/os/Parcelable$Creator;)V
         4: .line 63
            aload 0 /* this */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            arraylength
            newarray 10
            putfield android.view.textservice.SentenceSuggestionsInfo.mOffsets:[I
         5: .line 64
            aload 1 /* source */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mOffsets:[I
            invokevirtual android.os.Parcel.readIntArray:([I)V
         6: .line 65
            aload 0 /* this */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            arraylength
            newarray 10
            putfield android.view.textservice.SentenceSuggestionsInfo.mLengths:[I
         7: .line 66
            aload 1 /* source */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mLengths:[I
            invokevirtual android.os.Parcel.readIntArray:([I)V
         8: .line 67
            return
        end local 2 // int infoSize
        end local 1 // android.os.Parcel source
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Landroid/view/textservice/SentenceSuggestionsInfo;
            0    9     1    source  Landroid/os/Parcel;
            2    9     2  infoSize  I
    MethodParameters:
        Name  Flags
      source  

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
        start local 1 // android.os.Parcel dest
        start local 2 // int flags
         0: .line 77
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            arraylength
            istore 3 /* infoSize */
        start local 3 // int infoSize
         1: .line 78
            aload 1 /* dest */
            iload 3 /* infoSize */
            invokevirtual android.os.Parcel.writeInt:(I)V
         2: .line 79
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            iconst_0
            invokevirtual android.os.Parcel.writeTypedArray:([Landroid/os/Parcelable;I)V
         3: .line 80
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mOffsets:[I
            invokevirtual android.os.Parcel.writeIntArray:([I)V
         4: .line 81
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mLengths:[I
            invokevirtual android.os.Parcel.writeIntArray:([I)V
         5: .line 82
            return
        end local 3 // int infoSize
        end local 2 // int flags
        end local 1 // android.os.Parcel dest
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Landroid/view/textservice/SentenceSuggestionsInfo;
            0    6     1      dest  Landroid/os/Parcel;
            0    6     2     flags  I
            1    6     3  infoSize  I
    MethodParameters:
       Name  Flags
      dest   
      flags  

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
         0: .line 86
            iconst_0
            ireturn
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/textservice/SentenceSuggestionsInfo;

  public int getSuggestionsCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
         0: .line 93
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            arraylength
            ireturn
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/textservice/SentenceSuggestionsInfo;

  public android.view.textservice.SuggestionsInfo getSuggestionsInfoAt(int);
    descriptor: (I)Landroid/view/textservice/SuggestionsInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
        start local 1 // int i
         0: .line 101
            iload 1 /* i */
            iflt 2
            iload 1 /* i */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            arraylength
            if_icmpge 2
         1: .line 102
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mSuggestionsInfos:[Landroid/view/textservice/SuggestionsInfo;
            iload 1 /* i */
            aaload
            areturn
         2: .line 104
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // int i
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/view/textservice/SentenceSuggestionsInfo;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getOffsetAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
        start local 1 // int i
         0: .line 112
            iload 1 /* i */
            iflt 2
            iload 1 /* i */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mOffsets:[I
            arraylength
            if_icmpge 2
         1: .line 113
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mOffsets:[I
            iload 1 /* i */
            iaload
            ireturn
         2: .line 115
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // int i
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/view/textservice/SentenceSuggestionsInfo;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getLengthAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.view.textservice.SentenceSuggestionsInfo this
        start local 1 // int i
         0: .line 123
            iload 1 /* i */
            iflt 2
            iload 1 /* i */
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mLengths:[I
            arraylength
            if_icmpge 2
         1: .line 124
            aload 0 /* this */
            getfield android.view.textservice.SentenceSuggestionsInfo.mLengths:[I
            iload 1 /* i */
            iaload
            ireturn
         2: .line 126
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // int i
        end local 0 // android.view.textservice.SentenceSuggestionsInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/view/textservice/SentenceSuggestionsInfo;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     
}
SourceFile: "SentenceSuggestionsInfo.java"
NestMembers:
  android.view.textservice.SentenceSuggestionsInfo$1
InnerClasses:
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable
  android.view.textservice.SentenceSuggestionsInfo$1