Searched defs:Editor (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/content/
H A DSharedPreferences.java26 * Modifications to the preferences must go through an {@link Editor} object
68 public interface Editor { interface in interface:SharedPreferences
78 * @return Returns a reference to the same Editor object, so you can
81 Editor putString(String key, String value);
91 * @return Returns a reference to the same Editor object, so you can
94 Editor putStringSet(String key, Set<String> values);
103 * @return Returns a reference to the same Editor object, so you can
106 Editor putInt(String key, int value);
115 * @return Returns a reference to the same Editor object, so you can
118 Editor putLon
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java119 public class Editor { class
120 private static final String TAG = "Editor";
209 // The span controller helps monitoring the changes to which the Editor needs to react:
223 Editor(TextView textView) { method in class:Editor
463 // The default value is true, even when there is no associated Editor
927 // Note this may have to be moved out of the Editor class
1222 final Editor.InputMethodState ims = mInputMethodState;
1353 // Note how dynamic layout's internal block indices get updated from Editor
4080 Editor.this.mCorrectionHighlighter = null;
4161 final Editor mEdito
[all...]

Completed in 4202 milliseconds