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

/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTest4968709.java31 import java.beans.PropertyEditorManager;
35 String[] oldPath = PropertyEditorManager.getEditorSearchPath();
37 PropertyEditorManager.setEditorSearchPath(newPath);
38 if (null != PropertyEditorManager.findEditor(Test4968709.class))
41 PropertyEditorManager.setEditorSearchPath(oldPath);
42 if (null == PropertyEditorManager.findEditor(Double.TYPE))
H A DTest6397609.java31 import java.beans.PropertyEditorManager;
36 PropertyEditorManager.registerEditor(
53 if (null == PropertyEditorManager.findEditor(type)) {
H A DTest6963811.java27 * @summary Tests deadlock in PropertyEditorManager
33 import java.beans.PropertyEditorManager;
50 PropertyEditorManager.findEditor(Super.class);
54 PropertyEditorManager.findEditor(Sub.class);
H A DTestEditor.java25 import java.beans.PropertyEditorManager;
33 this.editor = PropertyEditorManager.findEditor(type);
/openjdk7/jdk/test/java/beans/Beans/
H A DTest4080522.java31 * PropertyEditorManager.setEditorSearchPath
38 import java.beans.PropertyEditorManager;
68 PropertyEditorManager.setEditorSearchPath(path);
69 throw new Error("PropertyEditorManager.setEditorSearchPath should throw SecurityException");
84 PropertyEditorManager.setEditorSearchPath(path);
/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyEditorManager.java29 * The PropertyEditorManager can be used to locate a property editor for
33 * The PropertyEditorManager uses three techniques for locating an editor
42 * So for an input class foo.bah.Fred, the PropertyEditorManager would
53 public class PropertyEditorManager { class
/openjdk7/jdk/test/java/beans/PropertyEditor/6380849/
H A DTestPropertyEditor.java39 import java.beans.PropertyEditorManager;
72 PropertyEditor actual = PropertyEditorManager.findEditor(type);
82 PropertyEditorManager.registerEditor(ThirdBean.class, ThirdBeanEditor.class);
108 PropertyEditorManager.registerEditor(ThirdBean.class, null);
109 PropertyEditorManager.setEditorSearchPath(SEARCH_PATH);

Completed in 40 milliseconds