Editors.java | 32 public class Editors implements EditableItemConstants { 38 private static final Map<Integer, Editor> EDITORS = editors(); 41 private static Map<Integer, Editor> editors() { method in class:Editors 42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>(); local 43 editors.put(TYPE_RESOURCE_ID, new IconEditor()); 44 editors.put(TYPE_TEXT, new TextEditor()); 45 editors.put(TYPE_INT, new IntEditor()); 47 editors.put(TYPE_BOOLEAN, new BooleanEditor()); 48 editors.put(TYPE_DROP_DOWN, new DropDownEditor()) [all...] |