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.uimafit.propertyeditors.GetAsTextStringEditor.java

/**
 * Custom property editor that tries to look convert and value to a string by checking if there is
 * a registered property editor for the source value.
 * 
 * @author Richard Eckart de Castilho
 */

From source file de.berlios.jhelpdesk.web.tools.ArticleCategoryEditor.java

/**
 *
 * @author jjhop
 */
@Component
public class ArticleCategoryEditor extends PropertyEditorSupport {

From source file de.berlios.jhelpdesk.web.tools.TicketCategoryEditor.java

/**
 *
 * @author jjhop
 */
@Component
public class TicketCategoryEditor extends PropertyEditorSupport {

From source file org.jdal.beans.ImagePropertyEditor.java

/**
 * Property editor for set Images from String in Spring bean definition files
 * 
 * @author Jose Luis Martin.
 * @since 1.0
 */

From source file org.fornax.cartridges.sculptor.framework.propertyeditor.EnumEditor.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 no.dusken.barweb.util.PersonEditor.java

public class PersonEditor extends PropertyEditorSupport {
    protected final static Logger log = LoggerFactory.getLogger(PersonEditor.class);

    private BarPersonService barPersonService;

    @Override

From source file org.openmrs.module.appointmentscheduling.web.TimeSlotEditor.java

public class TimeSlotEditor extends PropertyEditorSupport {

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

    public TimeSlotEditor() {
    }

From source file ubic.gemma.web.propertyeditor.TaxonPropertyEditor.java

/**
 * Used to convert Taxon from and into strings for display in forms. Either by primary key (id), common or scientific
 * name.
 *
 * @author pavlidis
 */

From source file org.openmrs.module.appointmentscheduling.web.AppointmentEditor.java

public class AppointmentEditor extends PropertyEditorSupport {

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

    public AppointmentEditor() {
    }

From source file org.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