Searched defs:Editor (Results 1 - 3 of 3) 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/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintJobConfigActivity.java178 private Editor mEditor;
236 mEditor = new Editor();
535 mEditor.showUi(Editor.UI_ERROR, new Runnable() {
620 mEditor.showUi(Editor.UI_ERROR, null);
641 mEditor.showUi(Editor.UI_ERROR, new Runnable() {
774 mEditor.showUi(Editor.UI_EDITING_PRINT_JOB,
857 private final class Editor { class in class:PrintJobConfigActivity
1265 public Editor() { method in class:PrintJobConfigActivity.Editor
1816 mEditor.showUi(Editor.UI_EDITING_PRINT_JOB, new Runnable() {
/frameworks/base/core/java/android/widget/
H A DEditor.java115 public class Editor { class
116 private static final String TAG = "Editor";
196 // The span controller helps monitoring the changes to which the Editor needs to react:
208 Editor(TextView textView) { method in class:Editor
432 // The default value is true, even when there is no associated Editor
896 // Note this may have to be moved out of the Editor class
1191 final Editor.InputMethodState ims = mInputMethodState;
1341 // Note how dynamic layout's internal block indices get updated from Editor
3834 Editor.this.mCorrectionHighlighter = null;
3916 final Editor mEdito
[all...]

Completed in 216 milliseconds