/**@class android.preference.EditTextPreference
@extends android.preference.DialogPreference

 A {@link android.preference.Preference} that allows for string
 input.
 <p>
 It is a subclass of {@link android.preference.DialogPreference} and shows the {@link EditText}
 in a dialog. This {@link EditText} can be modified either programmatically
 via {@link #getEditText}(), or through XML by setting any EditText
 attributes on the EditTextPreference.
 <p>
 This preference will store a string into the SharedPreferences.
 <p>
 See {@link android.R.styleable#EditText EditText Attributes}.

 @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 EditTextPreference = {

/**Saves the text to the {@link SharedPreferences}.
@param {String} text The text to save
*/
setText : function(  ) {},

/**Gets the text from the {@link SharedPreferences}.
@return {String} The current preference value.
*/
getText : function(  ) {},

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

/**Returns the {@link EditText} widget that will be shown in the dialog.
@return {Object {android.widget.EditText}} The {@link EditText} widget that will be shown in the dialog.
*/
getEditText : function(  ) {},


};