java.beans
Class PropertyEditorManager

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.beans.PropertyEditorManager

public class PropertyEditorManager
extends Object sample code for java.lang.Object definition code for java.lang.Object

The PropertyEditorManager can be used to locate a property editor for any given type name. This property editor must support the java.beans.PropertyEditor interface for editing a given 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 Summary
PropertyEditorManager sample code for java.beans.PropertyEditorManager.PropertyEditorManager() definition code for java.beans.PropertyEditorManager.PropertyEditorManager() ()
           
 
Method Summary
static PropertyEditor sample code for java.beans.PropertyEditor definition code for java.beans.PropertyEditor findEditor sample code for java.beans.PropertyEditorManager.findEditor(java.lang.Class) definition code for java.beans.PropertyEditorManager.findEditor(java.lang.Class) (Class sample code for java.lang.Class definition code for java.lang.Class <?> targetType)
          Locate a value editor for a given target type.
static String sample code for java.lang.String definition code for java.lang.String [] getEditorSearchPath sample code for java.beans.PropertyEditorManager.getEditorSearchPath() definition code for java.beans.PropertyEditorManager.getEditorSearchPath() ()
          Gets the package names that will be searched for property editors.
static void registerEditor sample code for java.beans.PropertyEditorManager.registerEditor(java.lang.Class, java.lang.Class) definition code for java.beans.PropertyEditorManager.registerEditor(java.lang.Class, java.lang.Class) (Class sample code for java.lang.Class definition code for java.lang.Class <?> targetType, Class sample code for java.lang.Class definition code for java.lang.Class <?> editorClass)
          Register an editor class to be used to edit values of a given target class.
static void setEditorSearchPath sample code for java.beans.PropertyEditorManager.setEditorSearchPath(java.lang.String[]) definition code for java.beans.PropertyEditorManager.setEditorSearchPath(java.lang.String[]) (String sample code for java.lang.String definition code for java.lang.String [] path)
          Change the list of package names that will be used for finding property editors.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

PropertyEditorManager sample code for java.beans.PropertyEditorManager() definition code for java.beans.PropertyEditorManager()

public PropertyEditorManager()
Method Detail

registerEditor sample code for java.beans.PropertyEditorManager.registerEditor(java.lang.Class<?>, java.lang.Class<?>) definition code for java.beans.PropertyEditorManager.registerEditor(java.lang.Class<?>, java.lang.Class<?>)

public static void registerEditor(Class sample code for java.lang.Class definition code for java.lang.Class <?> targetType,
                                  Class sample code for java.lang.Class definition code for java.lang.Class <?> editorClass)
Register an editor class to be used to edit values of a given target class.

First, if there is a security manager, its checkPropertiesAccess method is called. This could result in a SecurityException.

Parameters:
targetType - the Class object of the type to be edited
editorClass - the Class object of the editor class. If this is null, then any existing definition will be removed.
Throws:
SecurityException sample code for java.lang.SecurityException definition code for java.lang.SecurityException - if a security manager exists and its checkPropertiesAccess method doesn't allow setting of system properties.
See Also:
SecurityManager.checkPropertiesAccess() sample code for java.lang.SecurityManager.checkPropertiesAccess() definition code for java.lang.SecurityManager.checkPropertiesAccess()

findEditor sample code for java.beans.PropertyEditorManager.findEditor(java.lang.Class<?>) definition code for java.beans.PropertyEditorManager.findEditor(java.lang.Class<?>)

public static PropertyEditor sample code for java.beans.PropertyEditor definition code for java.beans.PropertyEditor  findEditor(Class sample code for java.lang.Class definition code for java.lang.Class <?> targetType)
Locate a value editor for a given target type.

Parameters:
targetType - The Class object for the type to be edited
Returns:
An editor object for the given target class. The result is null if no suitable editor can be found.

getEditorSearchPath sample code for java.beans.PropertyEditorManager.getEditorSearchPath() definition code for java.beans.PropertyEditorManager.getEditorSearchPath()

public static String sample code for java.lang.String definition code for java.lang.String [] getEditorSearchPath()
Gets the package names that will be searched for property editors.

Returns:
The array of package names that will be searched in order to find property editors.

The default value for this array is implementation-dependent, e.g. Sun implementation initially sets to {"sun.beans.editors"}.


setEditorSearchPath sample code for java.beans.PropertyEditorManager.setEditorSearchPath(java.lang.String[]) definition code for java.beans.PropertyEditorManager.setEditorSearchPath(java.lang.String[])

public static void setEditorSearchPath(String sample code for java.lang.String definition code for java.lang.String [] path)
Change the list of package names that will be used for finding property editors.

First, if there is a security manager, its checkPropertiesAccess method is called. This could result in a SecurityException.

Parameters:
path - Array of package names.
Throws:
SecurityException sample code for java.lang.SecurityException definition code for java.lang.SecurityException - if a security manager exists and its checkPropertiesAccess method doesn't allow setting of system properties.
See Also:
SecurityManager.checkPropertiesAccess() sample code for java.lang.SecurityManager.checkPropertiesAccess() definition code for java.lang.SecurityManager.checkPropertiesAccess()