org.springframework.beans
Class PropertyValuesEditor

java.lang.Object
  |
  +--java.beans.PropertyEditorSupport
        |
        +--org.springframework.beans.PropertyValuesEditor

public class PropertyValuesEditor
extends PropertyEditorSupport

Editor for PropertyValues objects. Not a GUI editor.
NB: this editor must be registered with the JavaBeans API before it will be available. Editors in this package are registered by BeanWrapperImpl.
The required format is defined in java.util.Properties documentation. Each property must be on a new line.
The present implementation relies on a PropertiesEditor.

Author:
Rod Johnson

Method Summary
 voidsetAsText(String s)
           

Methods inherited from class java.beans.PropertyEditorSupport
firePropertyChange, isPaintable, supportsCustomEditor, getCustomEditor, addPropertyChangeListener, removePropertyChangeListener, getValue, setValue, getAsText, getJavaInitializationString, getTags, paintValue

Methods inherited from class java.lang.Object
hashCode, notify, notifyAll, wait, wait, wait, getClass, equals, toString

Method Detail

setAsText

public void setAsText(String s)
throws java.lang.IllegalArgumentException
See Also:
java.beans.PropertyEditor.setAsText(java.lang.String)