public class android.bluetooth.BluetoothGattService implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.bluetooth.BluetoothGattService
  super_class: java.lang.Object
{
  public static final int SERVICE_TYPE_PRIMARY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int SERVICE_TYPE_SECONDARY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  protected android.bluetooth.BluetoothDevice mDevice;
    descriptor: Landroid/bluetooth/BluetoothDevice;
    flags: (0x0004) ACC_PROTECTED

  protected java.util.UUID mUuid;
    descriptor: Ljava/util/UUID;
    flags: (0x0004) ACC_PROTECTED

  protected int mInstanceId;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int mHandles;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int mServiceType;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected java.util.List<android.bluetooth.BluetoothGattCharacteristic> mCharacteristics;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Landroid/bluetooth/BluetoothGattCharacteristic;>;

  protected java.util.List<android.bluetooth.BluetoothGattService> mIncludedServices;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Landroid/bluetooth/BluetoothGattService;>;

  private boolean mAdvertisePreferred;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

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

  public void <init>(java.util.UUID, int);
    descriptor: (Ljava/util/UUID;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // java.util.UUID uuid
        start local 2 // int serviceType
         0: .line 105
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            iconst_0
            putfield android.bluetooth.BluetoothGattService.mHandles:I
         2: .line 106
            aload 0 /* this */
            aconst_null
            putfield android.bluetooth.BluetoothGattService.mDevice:Landroid/bluetooth/BluetoothDevice;
         3: .line 107
            aload 0 /* this */
            aload 1 /* uuid */
            putfield android.bluetooth.BluetoothGattService.mUuid:Ljava/util/UUID;
         4: .line 108
            aload 0 /* this */
            iconst_0
            putfield android.bluetooth.BluetoothGattService.mInstanceId:I
         5: .line 109
            aload 0 /* this */
            iload 2 /* serviceType */
            putfield android.bluetooth.BluetoothGattService.mServiceType:I
         6: .line 110
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
         7: .line 111
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
         8: .line 112
            return
        end local 2 // int serviceType
        end local 1 // java.util.UUID uuid
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Landroid/bluetooth/BluetoothGattService;
            0    9     1         uuid  Ljava/util/UUID;
            0    9     2  serviceType  I
    MethodParameters:
             Name  Flags
      uuid         
      serviceType  

  void <init>(android.bluetooth.BluetoothDevice, java.util.UUID, int, int);
    descriptor: (Landroid/bluetooth/BluetoothDevice;Ljava/util/UUID;II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // android.bluetooth.BluetoothDevice device
        start local 2 // java.util.UUID uuid
        start local 3 // int instanceId
        start local 4 // int serviceType
         0: .line 119
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            iconst_0
            putfield android.bluetooth.BluetoothGattService.mHandles:I
         2: .line 121
            aload 0 /* this */
            aload 1 /* device */
            putfield android.bluetooth.BluetoothGattService.mDevice:Landroid/bluetooth/BluetoothDevice;
         3: .line 122
            aload 0 /* this */
            aload 2 /* uuid */
            putfield android.bluetooth.BluetoothGattService.mUuid:Ljava/util/UUID;
         4: .line 123
            aload 0 /* this */
            iload 3 /* instanceId */
            putfield android.bluetooth.BluetoothGattService.mInstanceId:I
         5: .line 124
            aload 0 /* this */
            iload 4 /* serviceType */
            putfield android.bluetooth.BluetoothGattService.mServiceType:I
         6: .line 125
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
         7: .line 126
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
         8: .line 127
            return
        end local 4 // int serviceType
        end local 3 // int instanceId
        end local 2 // java.util.UUID uuid
        end local 1 // android.bluetooth.BluetoothDevice device
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Landroid/bluetooth/BluetoothGattService;
            0    9     1       device  Landroid/bluetooth/BluetoothDevice;
            0    9     2         uuid  Ljava/util/UUID;
            0    9     3   instanceId  I
            0    9     4  serviceType  I
    MethodParameters:
             Name  Flags
      device       
      uuid         
      instanceId   
      serviceType  

  public void <init>(java.util.UUID, int, int);
    descriptor: (Ljava/util/UUID;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // java.util.UUID uuid
        start local 2 // int instanceId
        start local 3 // int serviceType
         0: .line 134
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            iconst_0
            putfield android.bluetooth.BluetoothGattService.mHandles:I
         2: .line 135
            aload 0 /* this */
            aconst_null
            putfield android.bluetooth.BluetoothGattService.mDevice:Landroid/bluetooth/BluetoothDevice;
         3: .line 136
            aload 0 /* this */
            aload 1 /* uuid */
            putfield android.bluetooth.BluetoothGattService.mUuid:Ljava/util/UUID;
         4: .line 137
            aload 0 /* this */
            iload 2 /* instanceId */
            putfield android.bluetooth.BluetoothGattService.mInstanceId:I
         5: .line 138
            aload 0 /* this */
            iload 3 /* serviceType */
            putfield android.bluetooth.BluetoothGattService.mServiceType:I
         6: .line 139
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
         7: .line 140
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
         8: .line 141
            return
        end local 3 // int serviceType
        end local 2 // int instanceId
        end local 1 // java.util.UUID uuid
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Landroid/bluetooth/BluetoothGattService;
            0    9     1         uuid  Ljava/util/UUID;
            0    9     2   instanceId  I
            0    9     3  serviceType  I
    MethodParameters:
             Name  Flags
      uuid         
      instanceId   
      serviceType  

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

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // android.os.Parcel out
        start local 2 // int flags
         0: .line 152
            aload 1 /* out */
            new android.os.ParcelUuid
            dup
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mUuid:Ljava/util/UUID;
            invokespecial android.os.ParcelUuid.<init>:(Ljava/util/UUID;)V
            iconst_0
            invokevirtual android.os.Parcel.writeParcelable:(Landroid/os/Parcelable;I)V
         1: .line 153
            aload 1 /* out */
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mInstanceId:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         2: .line 154
            aload 1 /* out */
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mServiceType:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         3: .line 155
            aload 1 /* out */
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
            invokevirtual android.os.Parcel.writeTypedList:(Ljava/util/List;)V
         4: .line 158
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
         5: .line 157
            astore 3 /* includedServices */
        start local 3 // java.util.ArrayList includedServices
         6: .line 159
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 11
      StackMap locals: android.bluetooth.BluetoothGattService android.os.Parcel int java.util.ArrayList top java.util.Iterator
      StackMap stack:
         7: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast android.bluetooth.BluetoothGattService
            astore 4 /* s */
        start local 4 // android.bluetooth.BluetoothGattService s
         8: .line 160
            aload 3 /* includedServices */
            new android.bluetooth.BluetoothGattIncludedService
            dup
            aload 4 /* s */
            invokevirtual android.bluetooth.BluetoothGattService.getUuid:()Ljava/util/UUID;
         9: .line 161
            aload 4 /* s */
            invokevirtual android.bluetooth.BluetoothGattService.getInstanceId:()I
            aload 4 /* s */
            invokevirtual android.bluetooth.BluetoothGattService.getType:()I
            invokespecial android.bluetooth.BluetoothGattIncludedService.<init>:(Ljava/util/UUID;II)V
        10: .line 160
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // android.bluetooth.BluetoothGattService s
        11: .line 159
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        12: .line 163
            aload 1 /* out */
            aload 3 /* includedServices */
            invokevirtual android.os.Parcel.writeTypedList:(Ljava/util/List;)V
        13: .line 164
            return
        end local 3 // java.util.ArrayList includedServices
        end local 2 // int flags
        end local 1 // android.os.Parcel out
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   14     0              this  Landroid/bluetooth/BluetoothGattService;
            0   14     1               out  Landroid/os/Parcel;
            0   14     2             flags  I
            6   14     3  includedServices  Ljava/util/ArrayList<Landroid/bluetooth/BluetoothGattIncludedService;>;
            8   11     4                 s  Landroid/bluetooth/BluetoothGattService;
    MethodParameters:
       Name  Flags
      out    
      flags  

  private void <init>(android.os.Parcel);
    descriptor: (Landroid/os/Parcel;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // android.os.Parcel in
         0: .line 177
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            iconst_0
            putfield android.bluetooth.BluetoothGattService.mHandles:I
         2: .line 178
            aload 0 /* this */
            aload 1 /* in */
            aconst_null
            invokevirtual android.os.Parcel.readParcelable:(Ljava/lang/ClassLoader;)Landroid/os/Parcelable;
            checkcast android.os.ParcelUuid
            invokevirtual android.os.ParcelUuid.getUuid:()Ljava/util/UUID;
            putfield android.bluetooth.BluetoothGattService.mUuid:Ljava/util/UUID;
         3: .line 179
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.bluetooth.BluetoothGattService.mInstanceId:I
         4: .line 180
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.bluetooth.BluetoothGattService.mServiceType:I
         5: .line 182
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
         6: .line 185
            aload 1 /* in */
            getstatic android.bluetooth.BluetoothGattCharacteristic.CREATOR:Landroid/os/Parcelable$Creator;
            invokevirtual android.os.Parcel.createTypedArrayList:(Landroid/os/Parcelable$Creator;)Ljava/util/ArrayList;
         7: .line 184
            astore 2 /* chrcs */
        start local 2 // java.util.ArrayList chrcs
         8: .line 186
            aload 2 /* chrcs */
            ifnull 14
         9: .line 187
            aload 2 /* chrcs */
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 13
      StackMap locals: android.bluetooth.BluetoothGattService android.os.Parcel java.util.ArrayList top java.util.Iterator
      StackMap stack:
        10: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast android.bluetooth.BluetoothGattCharacteristic
            astore 3 /* chrc */
        start local 3 // android.bluetooth.BluetoothGattCharacteristic chrc
        11: .line 188
            aload 3 /* chrc */
            aload 0 /* this */
            invokevirtual android.bluetooth.BluetoothGattCharacteristic.setService:(Landroid/bluetooth/BluetoothGattService;)V
        12: .line 189
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
            aload 3 /* chrc */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // android.bluetooth.BluetoothGattCharacteristic chrc
        13: .line 187
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        14: .line 193
      StackMap locals: android.bluetooth.BluetoothGattService android.os.Parcel java.util.ArrayList
      StackMap stack:
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
        15: .line 196
            aload 1 /* in */
            getstatic android.bluetooth.BluetoothGattIncludedService.CREATOR:Landroid/os/Parcelable$Creator;
            invokevirtual android.os.Parcel.createTypedArrayList:(Landroid/os/Parcelable$Creator;)Ljava/util/ArrayList;
        16: .line 195
            astore 3 /* inclSvcs */
        start local 3 // java.util.ArrayList inclSvcs
        17: .line 197
            aload 2 /* chrcs */
            ifnull 24
        18: .line 198
            aload 3 /* inclSvcs */
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 5
            goto 23
      StackMap locals: android.bluetooth.BluetoothGattService android.os.Parcel java.util.ArrayList java.util.ArrayList top java.util.Iterator
      StackMap stack:
        19: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast android.bluetooth.BluetoothGattIncludedService
            astore 4 /* isvc */
        start local 4 // android.bluetooth.BluetoothGattIncludedService isvc
        20: .line 199
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
            new android.bluetooth.BluetoothGattService
            dup
            aconst_null
            aload 4 /* isvc */
            invokevirtual android.bluetooth.BluetoothGattIncludedService.getUuid:()Ljava/util/UUID;
        21: .line 200
            aload 4 /* isvc */
            invokevirtual android.bluetooth.BluetoothGattIncludedService.getInstanceId:()I
            aload 4 /* isvc */
            invokevirtual android.bluetooth.BluetoothGattIncludedService.getType:()I
            invokespecial android.bluetooth.BluetoothGattService.<init>:(Landroid/bluetooth/BluetoothDevice;Ljava/util/UUID;II)V
        22: .line 199
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // android.bluetooth.BluetoothGattIncludedService isvc
        23: .line 198
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 19
        24: .line 203
      StackMap locals: android.bluetooth.BluetoothGattService android.os.Parcel java.util.ArrayList java.util.ArrayList
      StackMap stack:
            return
        end local 3 // java.util.ArrayList inclSvcs
        end local 2 // java.util.ArrayList chrcs
        end local 1 // android.os.Parcel in
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   25     0      this  Landroid/bluetooth/BluetoothGattService;
            0   25     1        in  Landroid/os/Parcel;
            8   25     2     chrcs  Ljava/util/ArrayList<Landroid/bluetooth/BluetoothGattCharacteristic;>;
           11   13     3      chrc  Landroid/bluetooth/BluetoothGattCharacteristic;
           17   25     3  inclSvcs  Ljava/util/ArrayList<Landroid/bluetooth/BluetoothGattIncludedService;>;
           20   23     4      isvc  Landroid/bluetooth/BluetoothGattIncludedService;
    MethodParameters:
      Name  Flags
      in    

  android.bluetooth.BluetoothDevice getDevice();
    descriptor: ()Landroid/bluetooth/BluetoothDevice;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 211
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mDevice:Landroid/bluetooth/BluetoothDevice;
            areturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;

  void setDevice(android.bluetooth.BluetoothDevice);
    descriptor: (Landroid/bluetooth/BluetoothDevice;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // android.bluetooth.BluetoothDevice device
         0: .line 220
            aload 0 /* this */
            aload 1 /* device */
            putfield android.bluetooth.BluetoothGattService.mDevice:Landroid/bluetooth/BluetoothDevice;
         1: .line 221
            return
        end local 1 // android.bluetooth.BluetoothDevice device
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Landroid/bluetooth/BluetoothGattService;
            0    2     1  device  Landroid/bluetooth/BluetoothDevice;
    MethodParameters:
        Name  Flags
      device  

  public boolean addService(android.bluetooth.BluetoothGattService);
    descriptor: (Landroid/bluetooth/BluetoothGattService;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // android.bluetooth.BluetoothGattService service
         0: .line 231
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
            aload 1 /* service */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 232
            iconst_1
            ireturn
        end local 1 // android.bluetooth.BluetoothGattService service
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Landroid/bluetooth/BluetoothGattService;
            0    2     1  service  Landroid/bluetooth/BluetoothGattService;
    MethodParameters:
         Name  Flags
      service  

  public boolean addCharacteristic(android.bluetooth.BluetoothGattCharacteristic);
    descriptor: (Landroid/bluetooth/BluetoothGattCharacteristic;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // android.bluetooth.BluetoothGattCharacteristic characteristic
         0: .line 243
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
            aload 1 /* characteristic */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 244
            aload 1 /* characteristic */
            aload 0 /* this */
            invokevirtual android.bluetooth.BluetoothGattCharacteristic.setService:(Landroid/bluetooth/BluetoothGattService;)V
         2: .line 245
            iconst_1
            ireturn
        end local 1 // android.bluetooth.BluetoothGattCharacteristic characteristic
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Landroid/bluetooth/BluetoothGattService;
            0    3     1  characteristic  Landroid/bluetooth/BluetoothGattCharacteristic;
    MethodParameters:
                Name  Flags
      characteristic  

  android.bluetooth.BluetoothGattCharacteristic getCharacteristic(java.util.UUID, int);
    descriptor: (Ljava/util/UUID;I)Landroid/bluetooth/BluetoothGattCharacteristic;
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // java.util.UUID uuid
        start local 2 // int instanceId
         0: .line 254
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: android.bluetooth.BluetoothGattService java.util.UUID int top java.util.Iterator
      StackMap stack:
         1: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast android.bluetooth.BluetoothGattCharacteristic
            astore 3 /* characteristic */
        start local 3 // android.bluetooth.BluetoothGattCharacteristic characteristic
         2: .line 255
            aload 1 /* uuid */
            aload 3 /* characteristic */
            invokevirtual android.bluetooth.BluetoothGattCharacteristic.getUuid:()Ljava/util/UUID;
            invokevirtual java.util.UUID.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 256
            aload 3 /* characteristic */
            invokevirtual android.bluetooth.BluetoothGattCharacteristic.getInstanceId:()I
            iload 2 /* instanceId */
            if_icmpne 5
         4: .line 257
            aload 3 /* characteristic */
            areturn
        end local 3 // android.bluetooth.BluetoothGattCharacteristic characteristic
         5: .line 254
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         6: .line 260
            aconst_null
            areturn
        end local 2 // int instanceId
        end local 1 // java.util.UUID uuid
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Landroid/bluetooth/BluetoothGattService;
            0    7     1            uuid  Ljava/util/UUID;
            0    7     2      instanceId  I
            2    5     3  characteristic  Landroid/bluetooth/BluetoothGattCharacteristic;
    MethodParameters:
            Name  Flags
      uuid        
      instanceId  

  public void setInstanceId(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // int instanceId
         0: .line 269
            aload 0 /* this */
            iload 1 /* instanceId */
            putfield android.bluetooth.BluetoothGattService.mInstanceId:I
         1: .line 270
            return
        end local 1 // int instanceId
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Landroid/bluetooth/BluetoothGattService;
            0    2     1  instanceId  I
    MethodParameters:
            Name  Flags
      instanceId  

  int getHandles();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 278
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mHandles:I
            ireturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;

  public void setHandles(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // int handles
         0: .line 288
            aload 0 /* this */
            iload 1 /* handles */
            putfield android.bluetooth.BluetoothGattService.mHandles:I
         1: .line 289
            return
        end local 1 // int handles
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Landroid/bluetooth/BluetoothGattService;
            0    2     1  handles  I
    MethodParameters:
         Name  Flags
      handles  

  public void addIncludedService(android.bluetooth.BluetoothGattService);
    descriptor: (Landroid/bluetooth/BluetoothGattService;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // android.bluetooth.BluetoothGattService includedService
         0: .line 297
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
            aload 1 /* includedService */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 298
            return
        end local 1 // android.bluetooth.BluetoothGattService includedService
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Landroid/bluetooth/BluetoothGattService;
            0    2     1  includedService  Landroid/bluetooth/BluetoothGattService;
    MethodParameters:
                 Name  Flags
      includedService  

  public java.util.UUID getUuid();
    descriptor: ()Ljava/util/UUID;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 306
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mUuid:Ljava/util/UUID;
            areturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;

  public int getInstanceId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 319
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mInstanceId:I
            ireturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 326
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mServiceType:I
            ireturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;

  public java.util.List<android.bluetooth.BluetoothGattService> getIncludedServices();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 335
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mIncludedServices:Ljava/util/List;
            areturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;
    Signature: ()Ljava/util/List<Landroid/bluetooth/BluetoothGattService;>;

  public java.util.List<android.bluetooth.BluetoothGattCharacteristic> getCharacteristics();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 344
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
            areturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;
    Signature: ()Ljava/util/List<Landroid/bluetooth/BluetoothGattCharacteristic;>;

  public android.bluetooth.BluetoothGattCharacteristic getCharacteristic(java.util.UUID);
    descriptor: (Ljava/util/UUID;)Landroid/bluetooth/BluetoothGattCharacteristic;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // java.util.UUID uuid
         0: .line 363
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mCharacteristics:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: android.bluetooth.BluetoothGattService java.util.UUID top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast android.bluetooth.BluetoothGattCharacteristic
            astore 2 /* characteristic */
        start local 2 // android.bluetooth.BluetoothGattCharacteristic characteristic
         2: .line 364
            aload 1 /* uuid */
            aload 2 /* characteristic */
            invokevirtual android.bluetooth.BluetoothGattCharacteristic.getUuid:()Ljava/util/UUID;
            invokevirtual java.util.UUID.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 365
            aload 2 /* characteristic */
            areturn
        end local 2 // android.bluetooth.BluetoothGattCharacteristic characteristic
         4: .line 363
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 368
            aconst_null
            areturn
        end local 1 // java.util.UUID uuid
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Landroid/bluetooth/BluetoothGattService;
            0    6     1            uuid  Ljava/util/UUID;
            2    4     2  characteristic  Landroid/bluetooth/BluetoothGattCharacteristic;
    MethodParameters:
      Name  Flags
      uuid  

  public boolean isAdvertisePreferred();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.bluetooth.BluetoothGattService this
         0: .line 377
            aload 0 /* this */
            getfield android.bluetooth.BluetoothGattService.mAdvertisePreferred:Z
            ireturn
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/bluetooth/BluetoothGattService;

  public void setAdvertisePreferred(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.bluetooth.BluetoothGattService this
        start local 1 // boolean advertisePreferred
         0: .line 386
            aload 0 /* this */
            iload 1 /* advertisePreferred */
            putfield android.bluetooth.BluetoothGattService.mAdvertisePreferred:Z
         1: .line 387
            return
        end local 1 // boolean advertisePreferred
        end local 0 // android.bluetooth.BluetoothGattService this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Landroid/bluetooth/BluetoothGattService;
            0    2     1  advertisePreferred  Z
    MethodParameters:
                    Name  Flags
      advertisePreferred  
}
SourceFile: "BluetoothGattService.java"
NestMembers:
  android.bluetooth.BluetoothGattService$1
InnerClasses:
  android.bluetooth.BluetoothGattService$1
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable