Example usage for java.beans PropertyEditorSupport subclass-usage

List of usage examples for java.beans PropertyEditorSupport subclass-usage

Introduction

In this page you can find the example usage for java.beans PropertyEditorSupport subclass-usage.

Usage

From source file org.tsm.concharto.web.util.GeometryPropertyEditor.java

/**
 * Converts JSON string to a LineString and vica versa.
 * TODO fix this!  
 */
public class GeometryPropertyEditor extends PropertyEditorSupport {

From source file gda.spring.propertyeditors.RealVectorPropertyEditor.java

/**
 * A {@link PropertyEditor} for {@link RealVector}s. Strings must be in the format <code>{1,2,3}</code>.
 */
public class RealVectorPropertyEditor extends PropertyEditorSupport {

    @Override

From source file org.fornax.cartridges.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.diabetesmanagement.propertyeditor.InsulinTypeEditor.java

/**
 * Property editor for {@link org.openmrs.module.diabetesmanagement.InsulinType}.
 */
public class InsulinTypeEditor extends PropertyEditorSupport {

    /** Log for this class and subclasses. */

From source file org.openmrs.propertyeditor.ConceptSetsEditor.java

/**
 * Turns a list of concept ids "123 1234 1235" into a List of ConceptSets
 */
public class ConceptSetsEditor extends PropertyEditorSupport {

    private Log log = LogFactory.getLog(this.getClass());

From source file com.hg.ecommerce.action.extension.editor.CustomDateEditor.java

/**
 * Property editor for {@code java.util.Date},
 * supporting a custom {@code java.text.DateFormat}.
 *
 * <p>This is not meant to be used as system PropertyEditor but rather
 * as locale-specific date editor within custom controller code,

From source file org.springframework.transaction.interceptor.TransactionAttributeSourceEditor.java

/**
 * Property editor that can convert String into TransactionAttributeSource.
 * The transaction attribute string must be parseable by the
 * TransactionAttributeEditor in this package.
 *
 * <p>Strings are in property syntax, with the form:<br>

From source file org.openmrs.module.clinicalsummary.web.editor.SummaryEditor.java

/**
 */
public class SummaryEditor extends PropertyEditorSupport {

    private static final Log log = LogFactory.getLog(SummaryEditor.class);

From source file org.browsexml.timesheetjob.web.CustomBooleanEditor.java

/**
 * Property editor for Boolean/boolean properties.
 *
 * <p>This is not meant to be used as system PropertyEditor but rather as
 * locale-specific Boolean editor within custom controller code, to parse
 * UI-caused boolean strings into boolean properties of beans and check

From source file net.sf.morph.beans.ConverterDelegatingPropertyEditor.java

/**
 * A PropertyEditor backed by underlying Morph
 * {@link net.sf.morph.transform.Converter}s.
 * 
 * @author Matt Sgarlata
 * @since Dec 13, 2004