List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file org.openmrs.module.radiology.study.RadiologyStudyEditor.java
/**
* Allows for serializing/deserializing a RadiologyStudy object to a string so that Spring knows how to pass
* a RadiologyStudy back and forth through an html form or other medium
* <br/>
*
* @see RadiologyStudy
From source file am.ik.support.morphia.ObjectIdEditor.java
public class ObjectIdEditor extends PropertyEditorSupport { @Override public void setAsText(String text) throws IllegalArgumentException { if (!StringUtils.hasLength(text) || "_empty".equals(text)) { setValue(null); } else {
From source file org.openmrs.module.radiology.modality.RadiologyModalityEditor.java
/**
* Allows for serializing/deserializing a RadiologyModality object to a string so that Spring knows how to pass
* a RadiologyModality back and forth through an html form or other medium
* <br/>
*
* @see RadiologyModality
From source file org.openmrs.propertyeditor.CohortEditor.java
/**
* Allows for serializing/deserializing an object to a string so that Spring knows how to pass
* an object back and forth through an html form or other medium. <br>
* <br>
* In version 1.9, added ability for this to also retrieve objects by uuid
*
From source file org.finra.herd.rest.DateTimeEditor.java
/** * Property editor for Joda DateTime. */ @Component public class DateTimeEditor extends PropertyEditorSupport { @Override
From source file org.jdal.beans.CurrencyEditor.java
/** * Property editor for currencies. * * @author Jose Luis Martin */ public class CurrencyEditor extends PropertyEditorSupport {
From source file org.openmrs.module.pmtct.BooleanEditor.java
/** * */ public class BooleanEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass());
From source file com.alibaba.citrus.service.upload.support.StringFileItemEditor.java
/** * <code>FileItem</code>?? * * @author Michael Zhou */ public class StringFileItemEditor extends PropertyEditorSupport {
From source file org.tonguetied.web.FormatTypeSupport.java
/**
* Support class to map enum {@link FormatType} to a string key in the web tier.
* This class is used for rendering purposes.
*
* @author bsion
*
From source file org.codehaus.groovy.grails.web.binding.CurrencyEditor.java
/** * A Property editor for converting instances of java.util.Currency. * * @author Graeme Rocher */ public class CurrencyEditor extends PropertyEditorSupport {