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

/frameworks/base/core/java/android/content/
H A DSharedPreferences.java28 * Modifications to the preferences must go through an {@link Editor} object
70 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, @Nullable String value);
91 * @return Returns a reference to the same Editor object, so you can
94 Editor putStringSet(String key, @Nullable 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.java121 public class Editor { class
122 private static final String TAG = "Editor";
131 // Tag used when the Editor maintains its own separate UndoManager.
132 private static final String UNDO_OWNER_TAG = "Editor";
143 // Each Editor manages its own undo stack.
233 // The span controller helps monitoring the changes to which the Editor needs to react:
266 Editor(TextView textView) { method in class:Editor
290 * Forgets all undo and redo operations for this Editor.
574 // The default value is true, even when there is no associated Editor
1064 // Note this may have to be moved out of the Editor clas
[all...]

Completed in 72 milliseconds