public class PropertyEditorManager extends Object
The PropertyEditorManager uses three techniques for locating an editor for a given type. First, it provides a registerEditor method to allow an editor to be specifically registered for a given type. Second it tries to locate a suitable class by adding "Editor" to the full qualified classname of the given type (e.g. "foo.bah.FozEditor"). Finally it takes the simple classname (without the package name) adds "Editor" to it and looks in a search-path of packages for a matching class.
So for an input class foo.bah.Fred, the PropertyEditorManager would first look in its tables to see if an editor had been registered for foo.bah.Fred and if so use that. Then it will look for a foo.bah.FredEditor class. Then it will look for (say) standardEditorsPackage.FredEditor class.
Default PropertyEditors will be provided for the Java primitive types "boolean", "byte", "short", "int", "long", "float", and "double"; and for the classes java.lang.String. java.awt.Color, and java.awt.Font.
Constructor | Description |
---|---|
PropertyEditorManager() |
Constructs a PropertyEditorManager . |
Modifier and Type | Method | Description |
---|---|---|
static PropertyEditor |
findEditor |
Locate a value editor for a given target type. |
static String[] |
getEditorSearchPath() |
Gets the package names that will be searched for property editors. |
static void |
registerEditor |
Registers an editor class to edit values of the given target class. |
static void |
setEditorSearchPath |
Change the list of package names that will be used for finding property editors. |
public PropertyEditorManager()
PropertyEditorManager
.public static void registerEditor(Class<?> targetType, Class<?> editorClass)
null
, then any existing definition will be removed. Thus this method can be used to cancel the registration. The registration is canceled automatically if either the target or editor class is unloaded. If there is a security manager, its checkPropertiesAccess
method is called. This could result in a SecurityException.
targetType
- the class object of the type to be editededitorClass
- the class object of the editor classSecurityException
- if a security manager exists and its checkPropertiesAccess
method doesn't allow setting of system propertiespublic static PropertyEditor findEditor(Class<?> targetType)
targetType
- The Class object for the type to be editedpublic static String[] getEditorSearchPath()
The default value for this array is implementation-dependent, e.g. Sun implementation initially sets to {"sun.beans.editors"}.
public static void setEditorSearchPath(String[] path)
First, if there is a security manager, its checkPropertiesAccess
method is called. This could result in a SecurityException.
path
- Array of package names.SecurityException
- if a security manager exists and its checkPropertiesAccess
method doesn't allow setting of system properties.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/java/beans/PropertyEditorManager.html