当前页面: 
在线文档首页 > 
Spring Framework 1.2.9 API 文档英文版
ClassEditor (Spring Framework) - Spring Framework 1.2.9 API 文档英文版
org.springframework.beans.propertyeditors
Class ClassEditor
java.lang.Object
  
java.beans.PropertyEditorSupport
      
org.springframework.beans.propertyeditors.ClassEditor
- All Implemented Interfaces: 
 - PropertyEditor
 
public class ClassEditor
- extends PropertyEditorSupport
 
Property editor for java.lang.Class, to enable the direct
 population of a Class property without recourse to having to use a
 String class name property as bridge.
 
Also supports "java.lang.String[]"-style array class names, in contrast to the
 standard Class.forName(String) method.
 Delegates to ClassUtils for actual class name resolution.
- Since:
 
  - 13.05.2003
 
- Author:
 
  - Juergen Hoeller
 
- See Also:
 Class.forName(java.lang.String), 
ClassUtils.forName(String, ClassLoader)
| 
Constructor Summary | 
ClassEditor()
 
          Create a default ClassEditor, using the thread context ClassLoader. | 
ClassEditor(ClassLoader classLoader)
 
          Create a default ClassEditor, using the given ClassLoader. | 
 
 
| Methods inherited from class java.beans.PropertyEditorSupport | 
addPropertyChangeListener, firePropertyChange, getCustomEditor, getJavaInitializationString, getSource, getTags, getValue, isPaintable, paintValue, removePropertyChangeListener, setSource, setValue, supportsCustomEditor | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
ClassEditor
public ClassEditor()
- Create a default ClassEditor, using the thread context ClassLoader.
 
ClassEditor
public ClassEditor(ClassLoader classLoader)
- Create a default ClassEditor, using the given ClassLoader.
- Parameters:
 classLoader - the ClassLoader to use
 (or null for the thread context ClassLoader)
 
setAsText
public void setAsText(String text)
               throws IllegalArgumentException
- Specified by:
 setAsText in interface PropertyEditor- Overrides:
 setAsText in class PropertyEditorSupport
 
- Throws:
 IllegalArgumentException
 
getAsText
public String getAsText()
- Specified by:
 getAsText in interface PropertyEditor- Overrides:
 getAsText in class PropertyEditorSupport
 
 
Copyright (c) 2002-2007 The Spring Framework Project.