Home | History | Annotate | Download | only in filtershow

Lines Matching refs:Editor

8 import com.android.gallery3d.filtershow.editors.Editor;
19 private HashMap<Integer, Editor> mEditors = new HashMap<Integer, Editor>();
31 public void addEditor(Editor c) {
42 public Editor showEditor(int type) {
43 Editor editor = mEditors.get(type);
44 if (editor == null) {
49 editor.createEditor(mActivity, mContainer);
50 editor.setImageLoader(mImageLoader);
53 View eview = editor.getTopLevelView();
62 editor.setVisibility(View.VISIBLE);
63 return editor;
88 public Editor getEditor(int editorId) {