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.kuali.student.myplan.course.util.TimestampPropertyEditor.java

public class TimestampPropertyEditor extends PropertyEditorSupport implements Serializable {

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

    protected CollectionListPropertyEditorHtmlListType listType = CollectionListPropertyEditorHtmlListType.DL;

From source file org.acegisecurity.intercept.method.MethodDefinitionSourceEditor.java

/**
 * Property editor to assist with the setup of a {@link MethodDefinitionSource}.
 * <p>The class creates and populates a {@link MethodDefinitionMap}.</p>
 *
 * @author Ben Alex
 * @version $Id: MethodDefinitionSourceEditor.java 1784 2007-02-24 21:00:24Z luke_t $

From source file com.helpinput.propertyeditors.GLClassEditor.java

@TargetType(Class.class)
public class GLClassEditor extends PropertyEditorSupport {
    static Logger logger = LoggerBase.logger;

    private final ClassLoader classLoader;

From source file csns.web.editor.CalendarPropertyEditor.java

public class CalendarPropertyEditor extends PropertyEditorSupport {

    private DateFormat dateFormat;

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

From source file org.openmrs.module.restrictbyenctype.EncTypeRestrictionPropertyEditor.java

public class EncTypeRestrictionPropertyEditor extends PropertyEditorSupport {

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

    public EncTypeRestrictionPropertyEditor() {
    }

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

/**
 * Class to convert the "programid: workflowoneid workflow2id" strings to actual workflows on a
 * program
 */
public class WorkflowCollectionEditor extends PropertyEditorSupport {

From source file org.ojbc.web.portal.controllers.helpers.DateTimePropertyEditor.java

public class DateTimePropertyEditor extends PropertyEditorSupport {

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

        if (StringUtils.isBlank(text)) {

From source file cat.albirar.framework.dynabean.impl.DynaBeanDateEditor.java

/**
 * A formatter for {@link Date} or {@link Calendar} types.
 * 
 * @author <a href="mailto:ofornes@albirar.cat">Octavi Forns ofornes@albirar.cat</a>
 * @since 2.0.0
 */

From source file csns.web.editor.UserPropertyEditor.java

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

    @Autowired
    UserDao userDao;

From source file org.kuali.coeus.sys.framework.model.ScaleTwoDecimalEditor.java

public class ScaleTwoDecimalEditor extends PropertyEditorSupport {

    private DecimalFormat numberFormat;
    private boolean allowEmpty;

    public ScaleTwoDecimalEditor(DecimalFormat numberFormat, boolean allowEmpty) {