Package org.apache.xbean.propertyeditor
Class PropertyEditors
- java.lang.Object
-
- org.apache.xbean.propertyeditor.PropertyEditors
-
@Deprecated public class PropertyEditors extends java.lang.Object
Deprecated.The property editor manager. This orchestrates Geronimo usage of property editors, allowing additional search paths to be added and specific editors to be registered.- Version:
- $Rev: 6687 $
-
-
Field Summary
Fields Modifier and Type Field Description private static boolean
registerWithVM
Deprecated.private static PropertyEditorRegistry
REGISTRY
Deprecated.
-
Constructor Summary
Constructors Constructor Description PropertyEditors()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static boolean
canConvert(java.lang.Class<?> type)
Deprecated.static boolean
canConvert(java.lang.String type, java.lang.ClassLoader classLoader)
Deprecated.static java.lang.Object
getValue(java.lang.reflect.Type type, java.lang.String value)
Deprecated.static java.lang.Object
getValue(java.lang.String type, java.lang.String value, java.lang.ClassLoader classLoader)
Deprecated.static boolean
isRegisterWithVM()
Deprecated.Are converters registered with the VM PropertyEditorManager.static void
registerConverter(Converter converter)
Deprecated.static PropertyEditorRegistry
registry()
Deprecated.static void
setRegisterWithVM(boolean registerWithVM)
Deprecated.Sets if converters registered with the VM PropertyEditorManager.static java.lang.String
toString(java.lang.Object value)
Deprecated.
-
-
-
Field Detail
-
registerWithVM
private static boolean registerWithVM
Deprecated.
-
REGISTRY
private static final PropertyEditorRegistry REGISTRY
Deprecated.
-
-
Method Detail
-
isRegisterWithVM
public static boolean isRegisterWithVM()
Deprecated.Are converters registered with the VM PropertyEditorManager. By default converters are not registered with the VM as this creates problems for IDE and Spring because they rely in their specific converters being registered to function properly.
-
setRegisterWithVM
public static void setRegisterWithVM(boolean registerWithVM)
Deprecated.Sets if converters registered with the VM PropertyEditorManager. If the new value is true, all currently registered converters are immediately registered with the VM.
-
registerConverter
public static void registerConverter(Converter converter)
Deprecated.
-
canConvert
public static boolean canConvert(java.lang.String type, java.lang.ClassLoader classLoader)
Deprecated.
-
canConvert
public static boolean canConvert(java.lang.Class<?> type)
Deprecated.
-
toString
public static java.lang.String toString(java.lang.Object value) throws PropertyEditorException
Deprecated.- Throws:
PropertyEditorException
-
getValue
public static java.lang.Object getValue(java.lang.String type, java.lang.String value, java.lang.ClassLoader classLoader) throws PropertyEditorException
Deprecated.- Throws:
PropertyEditorException
-
getValue
public static java.lang.Object getValue(java.lang.reflect.Type type, java.lang.String value) throws PropertyEditorException
Deprecated.- Throws:
PropertyEditorException
-
registry
public static PropertyEditorRegistry registry()
Deprecated.
-
-