List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file ubic.gemma.web.propertyeditor.QuantitationTypePropertyEditor.java
/** * @author pavlidis * */ public class QuantitationTypePropertyEditor extends PropertyEditorSupport { private static Log log = LogFactory.getLog(QuantitationTypePropertyEditor.class.getName());
From source file org.openmrs.module.household.model.editor.HouseholdEncounterTypeEditor.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.openmrs.module.openhmis.cashier.web.propertyeditor.EntityPropertyEditor.java
/** * Support class to build property editors for entities. * @param <E> The model class */ public class EntityPropertyEditor<E extends OpenmrsObject> extends PropertyEditorSupport { private IObjectDataService<E> service;
From source file org.openmrs.module.reporting.propertyeditor.CohortDefinitionEditor.java
public class CohortDefinitionEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public CohortDefinitionEditor() { }
From source file org.jasig.ssp.util.uuid.UuidPropertyEditor.java
/**
* Property Editor for working with UUIDs
*
* @author daniel.bower
*
*/
From source file org.openmrs.module.reporting.propertyeditor.DataSetDefinitionEditor.java
public class DataSetDefinitionEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public DataSetDefinitionEditor() { }
From source file org.openregistry.core.web.propertyeditors.AbstractReferenceRepositoryPropertyEditor.java
/**
* Abstract class that supports the notion that a property editor will need access to the reference
* repository to obtain its information.
*
* @author Scott Battaglia
* @version $Revision$ $Date$
From source file org.openmrs.module.household.model.editor.HouseholdDefinitionParentEditor.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.fornax.cartridges.sculptor.framework.propertyeditor.LocalDateEditor.java
/**
* Custom <tt>PropertyEditorSupport</tt> to convert from <tt>String</tt> to
* JODA's <tt>LocalDate</tt>.
*
* @see <a
* href="http://springframework.cvs.sourceforge.net/springframework/spring/src/org/springframework/beans/propertyeditors/CustomDateEditor.java?revision=HEAD&view=markup">Spring's
From source file com.glaf.core.web.DateConvertEditor.java
public class DateConvertEditor extends PropertyEditorSupport { private SimpleDateFormat datetimeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); public void setAsText(String text) { if (StringUtils.isNotEmpty(text)) {