D | Editors.java | 38 private static final Map<Integer, Editor> EDITORS = editors(); 41 private static Map<Integer, Editor> editors() { in editors() method in Editors 42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>(); in editors() local 43 editors.put(TYPE_RESOURCE_ID, new IconEditor()); in editors() 44 editors.put(TYPE_TEXT, new TextEditor()); in editors() 45 editors.put(TYPE_INT, new IntEditor()); in editors() 47 editors.put(TYPE_BOOLEAN, new BooleanEditor()); in editors() 48 editors.put(TYPE_DROP_DOWN, new DropDownEditor()); in editors() 49 editors.put(TYPE_BITMAP, new BitmapEditor()); in editors() 51 editors.put(TYPE_DATETIME, new DateTimeEditor()); in editors() [all …]
|