Searched refs:targetType (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/awt/java/beans/
H A DPropertyEditorManager.java32 public static void registerEditor(Class<?> targetType, Class<?> editorClass) { argument
33 if (targetType == null) {
42 registeredEditors.put(targetType, editorClass);
44 registeredEditors.remove(targetType);
48 public static synchronized PropertyEditor findEditor(Class<?> targetType) { argument
49 if (targetType == null) {
56 editorClass = registeredEditors.get(targetType);
59 String editorClassName = targetType.getName() + "Editor"; //$NON-NLS-1$
60 ClassLoader loader = targetType.getClassLoader();
72 if (targetType
[all...]

Completed in 122 milliseconds