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 csns.web.editor.MFTDistributionTypePropertyEditor.java

@Component("mftDistributionTypePropertyEditor")
@Scope("prototype")
public class MFTDistributionTypePropertyEditor extends PropertyEditorSupport {

    @Autowired
    MFTDistributionTypeDao mftDistributionTypeDao;

From source file org.openmrs.module.laboratory.web.controller.propertyeditor.ConceptPropertyEditor.java

public class ConceptPropertyEditor extends PropertyEditorSupport {
    private Log log = LogFactory.getLog(this.getClass());

    public ConceptPropertyEditor() {
    }

From source file br.msf.commons.persistence.springframework.beans.propertyeditors.CustomCalendarEditor.java

/**
 * Property editor for
 * <code>java.util.Date</code>,
 * supporting a custom
 * <code>java.text.DateFormat</code>.
 *

From source file org.openmrs.module.report.web.controller.report.ReportPropertyEditor.java

public class ReportPropertyEditor extends PropertyEditorSupport {
    private Log log = LogFactory.getLog(this.getClass());

    public ReportPropertyEditor() {
    }

From source file org.jasig.portlet.blackboardvcportlet.mvc.sessionmngr.CustomDateMidnightEditor.java

/**
 * Property editor for <code>org.joda.time.DateMidnight</code>, supporting
 * a custom <code>org.joda.time.format.DateTimeFormatter</code>.  This class
 * is modeled on Spring's CustomDateEditor.
 * 
 * <p>

From source file br.ojimarcius.commons.persistence.springframework.beans.propertyeditors.CustomCalendarEditor.java

/**
 * Property editor for
 * <code>java.util.Date</code>,
 * supporting a custom
 * <code>java.text.DateFormat</code>.
 *

From source file org.kuali.student.myplan.course.util.CollectionListPropertyEditor.java

@Deprecated
public class CollectionListPropertyEditor extends PropertyEditorSupport implements Serializable {

    private final static Logger logger = Logger.getLogger(CollectionListPropertyEditor.class);

    //  Default parameter values.

From source file org.kuali.rice.krad.web.bind.UifTimeEditor.java

/**
 * PropertyEditor converts between time display strings and {@code java.sql.Time} objects
 *
 * @author Kuali Rice Team (rice.collab@kuali.org)
 */
public class UifTimeEditor extends PropertyEditorSupport implements Serializable {

From source file com.alibaba.otter.manager.web.webx.valve.auth.url.URLProtectedEditor.java

public class URLProtectedEditor extends PropertyEditorSupport {

    private static final Logger logger = LoggerFactory.getLogger(URLProtectedEditor.class);

    @Override
    public void setAsText(String text) throws IllegalArgumentException {

From source file org.kuali.student.ap.coursesearch.util.CollectionListPropertyEditor.java

public class CollectionListPropertyEditor extends PropertyEditorSupport implements Serializable {

    private final static Logger logger = LoggerFactory.getLogger(CollectionListPropertyEditor.class);

    //  Default parameter values.
    protected CollectionListPropertyEditorHtmlListType listType = CollectionListPropertyEditorHtmlListType.DL;