*/
public class RichTextBinder extends PropertyEditorSupport {
@Override
public void setAsText(String text) throws IllegalArgumentException {
RichText rt = (RichText) getValue();
if (StringUtils.hasText(text)) {
if (rt == null) rt = new RichText();
rt.setText(text);
}
setValue(rt);
}