/**@class android.preference.PreferenceCategory
@extends android.preference.PreferenceGroup

 Used to group {@link android.preference.Preference} objects
 and provide a disabled title above the group.
 
 <div class="special reference">
 <h3>Developer Guides</h3>
 <p>For information about building a settings UI with Preferences,
 read the <a href="{@docRoot}guide/topics/ui/settings.html">Settings</a>
 guide.</p>
 </div>

 @deprecated Use the <a href="{@docRoot}jetpack/androidx.html">AndroidX</a>
      <a href="{@docRoot}reference/androidx/preference/package-summary.html">
      Preference Library</a> for consistent behavior across all devices. For more information on
      using the AndroidX Preference Library see
      <a href="{@docRoot}guide/topics/ui/settings.html">Settings</a>.
*/
var PreferenceCategory = {

/**
*/
isEnabled : function(  ) {},

/**
*/
shouldDisableDependents : function(  ) {},


};