List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file org.openmrs.module.openhmis.commons.web.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.sculptor.framework.propertyeditor.DateTimeEditor.java
/**
* Custom <tt>PropertyEditor</tt> to convert from <tt>String</tt> to
* JODA's <tt>DateTime</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 org.openmrs.module.appointmentscheduling.web.AppointmentTypeEditor.java
public class AppointmentTypeEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public AppointmentTypeEditor() { }
From source file org.openmrs.module.orderextension.util.OrderSetEditor.java
/** * Supports conversion between an OrderSet and a String representation */ public class OrderSetEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass());
From source file org.openmrs.module.appointmentscheduling.web.AppointmentBlockEditor.java
public class AppointmentBlockEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public AppointmentBlockEditor() { }
From source file net.sf.morph2.beans.MorphPropertyEditor.java
/**
* A property editor that delegates all conversion requests to be handled
* automatically by Morph. By default, conversions will be done using Morph's
* default behavior (so the behavior will be consistent with the {@link Morph}
* convenience class).
*
From source file ubic.gemma.web.propertyeditor.ArrayDesignPropertyEditor.java
/**
* Used to convert ArrayDesigns from and into strings for display in forms.
*
* @author pavlidis
*
*/
From source file no.dusken.aranea.admin.editor.CalendarEditor.java
public class CalendarEditor extends PropertyEditorSupport { private String format; @Override public String getAsText() {
From source file org.openmrs.module.household.model.editor.HouseholdDefinitionEditor.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.reporting.propertyeditor.ReportDefinitionEditor.java
public class ReportDefinitionEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public ReportDefinitionEditor() { }