public abstract class com.android.systemui.qs.GlobalSetting extends android.database.ContentObserver implements com.android.systemui.statusbar.policy.Listenable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.android.systemui.qs.GlobalSetting
  super_class: android.database.ContentObserver
{
  private final android.content.Context mContext;
    descriptor: Landroid/content/Context;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String mSettingName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected abstract void handleValueChanged(int);
    descriptor: (I)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      value  

  public void <init>(android.content.Context, android.os.Handler, java.lang.String);
    descriptor: (Landroid/content/Context;Landroid/os/Handler;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.android.systemui.qs.GlobalSetting this
        start local 1 // android.content.Context context
        start local 2 // android.os.Handler handler
        start local 3 // java.lang.String settingName
         0: .line 34
            aload 0 /* this */
            aload 2 /* handler */
            invokespecial android.database.ContentObserver.<init>:(Landroid/os/Handler;)V
         1: .line 35
            aload 0 /* this */
            aload 1 /* context */
            putfield com.android.systemui.qs.GlobalSetting.mContext:Landroid/content/Context;
         2: .line 36
            aload 0 /* this */
            aload 3 /* settingName */
            putfield com.android.systemui.qs.GlobalSetting.mSettingName:Ljava/lang/String;
         3: .line 37
            return
        end local 3 // java.lang.String settingName
        end local 2 // android.os.Handler handler
        end local 1 // android.content.Context context
        end local 0 // com.android.systemui.qs.GlobalSetting this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lcom/android/systemui/qs/GlobalSetting;
            0    4     1      context  Landroid/content/Context;
            0    4     2      handler  Landroid/os/Handler;
            0    4     3  settingName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      context      
      handler      
      settingName  

  public int getValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.android.systemui.qs.GlobalSetting this
         0: .line 40
            aload 0 /* this */
            getfield com.android.systemui.qs.GlobalSetting.mContext:Landroid/content/Context;
            invokevirtual android.content.Context.getContentResolver:()Landroid/content/ContentResolver;
            aload 0 /* this */
            getfield com.android.systemui.qs.GlobalSetting.mSettingName:Ljava/lang/String;
            iconst_0
            invokestatic android.provider.Settings$Global.getInt:(Landroid/content/ContentResolver;Ljava/lang/String;I)I
            ireturn
        end local 0 // com.android.systemui.qs.GlobalSetting this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/systemui/qs/GlobalSetting;

  public void setValue(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.android.systemui.qs.GlobalSetting this
        start local 1 // int value
         0: .line 44
            aload 0 /* this */
            getfield com.android.systemui.qs.GlobalSetting.mContext:Landroid/content/Context;
            invokevirtual android.content.Context.getContentResolver:()Landroid/content/ContentResolver;
            aload 0 /* this */
            getfield com.android.systemui.qs.GlobalSetting.mSettingName:Ljava/lang/String;
            iload 1 /* value */
            invokestatic android.provider.Settings$Global.putInt:(Landroid/content/ContentResolver;Ljava/lang/String;I)Z
            pop
         1: .line 45
            return
        end local 1 // int value
        end local 0 // com.android.systemui.qs.GlobalSetting this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/android/systemui/qs/GlobalSetting;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public void setListening(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.android.systemui.qs.GlobalSetting this
        start local 1 // boolean listening
         0: .line 49
            iload 1 /* listening */
            ifeq 5
         1: .line 50
            aload 0 /* this */
            getfield com.android.systemui.qs.GlobalSetting.mContext:Landroid/content/Context;
            invokevirtual android.content.Context.getContentResolver:()Landroid/content/ContentResolver;
         2: .line 51
            aload 0 /* this */
            getfield com.android.systemui.qs.GlobalSetting.mSettingName:Ljava/lang/String;
            invokestatic android.provider.Settings$Global.getUriFor:(Ljava/lang/String;)Landroid/net/Uri;
            iconst_0
            aload 0 /* this */
         3: .line 50
            invokevirtual android.content.ContentResolver.registerContentObserver:(Landroid/net/Uri;ZLandroid/database/ContentObserver;)V
         4: .line 52
            goto 6
         5: .line 53
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.android.systemui.qs.GlobalSetting.mContext:Landroid/content/Context;
            invokevirtual android.content.Context.getContentResolver:()Landroid/content/ContentResolver;
            aload 0 /* this */
            invokevirtual android.content.ContentResolver.unregisterContentObserver:(Landroid/database/ContentObserver;)V
         6: .line 55
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean listening
        end local 0 // com.android.systemui.qs.GlobalSetting this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/android/systemui/qs/GlobalSetting;
            0    7     1  listening  Z
    MethodParameters:
           Name  Flags
      listening  

  public void onChange(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.android.systemui.qs.GlobalSetting this
        start local 1 // boolean selfChange
         0: .line 59
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.android.systemui.qs.GlobalSetting.getValue:()I
            invokevirtual com.android.systemui.qs.GlobalSetting.handleValueChanged:(I)V
         1: .line 60
            return
        end local 1 // boolean selfChange
        end local 0 // com.android.systemui.qs.GlobalSetting this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/android/systemui/qs/GlobalSetting;
            0    2     1  selfChange  Z
    MethodParameters:
            Name  Flags
      selfChange  
}
SourceFile: "GlobalSetting.java"
InnerClasses:
  public final Global = android.provider.Settings$Global of android.provider.Settings