org.springframework.beans.propertyeditors
Class CurrencyEditor
java.lang.Object
java.beans.PropertyEditorSupport
org.springframework.beans.propertyeditors.CurrencyEditor
- All Implemented Interfaces:
- PropertyEditor
public class CurrencyEditor
- extends PropertyEditorSupport
Editor for java.util.Currency
, translating currency codes into Currency
objects. Exposes the currency code as text representation of a Currency object.
- Since:
- 3.0
- Author:
- Juergen Hoeller
- See Also:
Currency
Method Summary |
String |
getAsText()
This implementation returns null to indicate that
there is no appropriate text representation. |
void |
setAsText(String text)
|
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 |
CurrencyEditor
public CurrencyEditor()
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()
- This implementation returns
null
to indicate that
there is no appropriate text representation.
- Specified by:
getAsText
in interface PropertyEditor
- Overrides:
getAsText
in class PropertyEditorSupport