Home | History | Annotate | Download | only in editor

Lines Matching defs:Editor

17 package com.android.notificationstudio.editor;
34 public interface Editor {
38 private static final Map<Integer, Editor> EDITORS = editors();
41 private static Map<Integer, Editor> editors() {
42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>();
69 Editor editor = EDITORS.get(item.getType());
70 if (editor == null)
72 Runnable updater = editor.bindEditor(editorView, item, new Runnable() {