List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file eu.scidipes.toolkits.pawebapp.util.Base64MultipartFileEditor.java
/**
* Simple {@link PropertyEditorSupport} subclass to Base64-encode the binary content of a {@link MultipartFile} instance
* as a <code>String</code>
*
* @author Tom Bunting
*
From source file org.sculptor.framework.propertyeditor.OptionEditor.java
/**
* This PropertyEditor is typically used to format
* options in select lists. It concatenates the defined
* properties, using the PropertyEditors already registered
* for the individual properties.
*
From source file org.jdal.beans.IconPropertyEditor.java
/**
* PropertyEditor for javax.swing.Icon
*
* @author Jose Luis Martin.
* @since 1.0
*/
From source file csns.web.editor.QuarterPropertyEditor.java
@Component @Scope("prototype") public class QuarterPropertyEditor extends PropertyEditorSupport { @Override public void setAsText(String text) throws IllegalArgumentException {
From source file org.fornax.cartridges.sculptor.framework.propertyeditor.OptionEditor.java
/**
* This PropertyEditor is typically used to format
* options in select lists. It concatenates the defined
* properties, using the PropertyEditors already registered
* for the individual properties.
*
From source file org.mashupmedia.editor.LibraryEditor.java
@Component public class LibraryEditor extends PropertyEditorSupport { @Autowired private LibraryManager libraryManager;
From source file org.kuali.student.myplan.course.util.ScheduledTermsPropertyEditor.java
public class ScheduledTermsPropertyEditor extends PropertyEditorSupport { protected CollectionListPropertyEditorHtmlListType listType = CollectionListPropertyEditorHtmlListType.UL; @Override public void setValue(Object value) { super.setValue(value);
From source file org.springframework.data.mongodb.config.ServerAddressPropertyEditor.java
/**
* Parse a {@link String} to a {@link ServerAddress} array. The format is host1:port1,host2:port2,host3:port3.
*
* @author Mark Pollack
* @author Oliver Gierke
*/
From source file org.openmrs.module.webservices.rest.web.propertyeditor.UuidEditor.java
/** * You can use this to override the property editors in the OpenMRS core, that are based off of * primary keys instead of UUIDs. */ public class UuidEditor extends PropertyEditorSupport {
From source file org.kuali.student.ap.coursesearch.util.TimestampPropertyEditor.java
public class TimestampPropertyEditor extends PropertyEditorSupport implements Serializable { private final static Logger logger = LoggerFactory.getLogger(TimestampPropertyEditor.class); private List<String> styleClasses;