List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file cdr.forms.DepositFileEditor.java
public class DepositFileEditor extends PropertyEditorSupport { public void setValue(Object value) { if (value instanceof MultipartFile) { MultipartFile multipartFile = (MultipartFile) value;
From source file com.trenako.web.editors.RailwayPropertyEditor.java
/** * @author Carlo Micieli */ public class RailwayPropertyEditor extends PropertyEditorSupport { private final boolean allowEmpty;
From source file com.trenako.web.editors.ScalePropertyEditor.java
/** * @author Carlo Micieli */ public class ScalePropertyEditor extends PropertyEditorSupport { private final boolean allowEmpty;
From source file org.openmrs.propertyeditor.ConceptDatatypeEditor.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.propertyeditor.LocationEditor.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.radiology.report.template.MrrtReportTemplateEditor.java
/**
* Allows for serializing/deserializing a MrrtReportTemplate object to a string so that Spring knows how to pass
* a MrrtReportTemplate back and forth through an html form or other medium
* <br/>
*
* @see MrrtReportTemplate
From source file org.openmrs.propertyeditor.ConceptNameEditor.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.propertyeditor.PatientIdentifierTypeEditor.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 de.berlios.jhelpdesk.web.tools.TicketPriorityEditor.java
@Component public class TicketPriorityEditor extends PropertyEditorSupport { @Override public String getAsText() { if (getValue() != null) {
From source file com.trenako.web.editors.BrandPropertyEditor.java
/** * Custom {@code PropertyEditor} for fields with {@link Brand} type. * * @author Carlo Micieli */ public class BrandPropertyEditor extends PropertyEditorSupport {