Home | History | Annotate | Download | only in shell
      1 /*
      2  * Copyright (C) 2013 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package com.android.shell;
     18 
     19 import android.content.Context;
     20 import android.content.SharedPreferences;
     21 
     22 /**
     23  * Preferences related to bug reports.
     24  */
     25 public class BugreportPrefs {
     26     private static final String PREFS_BUGREPORT = "bugreports";
     27 
     28     private static final String KEY_WARNING_STATE = "warning-state";
     29 
     30     public static final int STATE_UNKNOWN = 0;
     31     public static final int STATE_SHOW = 1;
     32     public static final int STATE_HIDE = 2;
     33 
     34     public static int getWarningState(Context context, int def) {
     35         final SharedPreferences prefs = context.getSharedPreferences(
     36                 PREFS_BUGREPORT, Context.MODE_PRIVATE);
     37         return prefs.getInt(KEY_WARNING_STATE, def);
     38     }
     39 
     40     public static void setWarningState(Context context, int value) {
     41         final SharedPreferences prefs = context.getSharedPreferences(
     42                 PREFS_BUGREPORT, Context.MODE_PRIVATE);
     43         prefs.edit().putInt(KEY_WARNING_STATE, value).apply();
     44     }
     45 }
     46