Class MapEditor
- java.lang.Object
-
- java.beans.PropertyEditorSupport
-
- org.apache.mina.integration.beans.AbstractPropertyEditor
-
- org.apache.mina.integration.beans.MapEditor
-
- All Implemented Interfaces:
PropertyEditor
- Direct Known Subclasses:
PropertiesEditor
public class MapEditor extends AbstractPropertyEditor
- Author:
- Apache MINA Project
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Map<Object,Object>
newMap()
protected String
toText(Object value)
Returns a String representation of the given valueprotected Object
toValue(String text)
Returns an instance from a String representation of an object-
Methods inherited from class org.apache.mina.integration.beans.AbstractPropertyEditor
defaultText, defaultValue, getAsText, getValue, setAsText, setTrimText, setValue
-
Methods inherited from class java.beans.PropertyEditorSupport
addPropertyChangeListener, firePropertyChange, getCustomEditor, getJavaInitializationString, getSource, getTags, isPaintable, paintValue, removePropertyChangeListener, setSource, supportsCustomEditor
-
-
-
-
Method Detail
-
toText
protected final String toText(Object value)
Description copied from class:AbstractPropertyEditor
Returns a String representation of the given value- Specified by:
toText
in classAbstractPropertyEditor
- Parameters:
value
- The value- Returns:
- A String representation of the value
-
toValue
protected final Object toValue(String text)
Description copied from class:AbstractPropertyEditor
Returns an instance from a String representation of an object- Specified by:
toValue
in classAbstractPropertyEditor
- Parameters:
text
- The String representation to convert- Returns:
- A instance of an object
-
-