Lines Matching refs:editor
59 throw new Error("unexpected property editor type: " + type);
61 PropertyEditor editor = pd.createPropertyEditor(bean);
62 if (editor == null)
63 throw new Error("property editor cannot be created");
65 if (STRING_VALUE != editor.getValue())
66 throw new Error("unexpected value: " + editor.getValue());
68 Object source = ((PropertyEditorSupport) editor).getSource();
79 throw new Error("unexpected property editor type: " + type);
81 PropertyEditor editor = pd.createPropertyEditor(bean);
82 if (editor == null)
83 throw new Error("property editor cannot be created");
85 if (INTEGER_VALUE != editor.getValue())
86 throw new Error("unexpected value: " + editor.getValue());
88 Object source = ((PropertyEditorSupport) editor).getSource();
89 if (source != editor)
163 // that uses this property editor as the source.