Example usage for org.springframework.beans.propertyeditors CustomDateEditor subclass-usage

List of usage examples for org.springframework.beans.propertyeditors CustomDateEditor subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans.propertyeditors CustomDateEditor subclass-usage.

Usage

From source file com.callcenter.editor.CustomCalendarEditor.java

/**
 * Created by IntelliJ IDEA.
 *
 * @author Deep Shah
 */
public class CustomCalendarEditor extends CustomDateEditor {

From source file grails.plugins.crm.core.CustomDateEditor.java

/**
 *
 * @author Goran Ehrsson
 */
@CompileStatic
public class CustomDateEditor extends org.springframework.beans.propertyeditors.CustomDateEditor {

From source file com.epam.ta.DateFormatEditor.java

/**
 * Added to avoid issues with ref local beans in spring configuration. Since 4
 * version we cannot use the following construction <ref local="bean id">
 * 
 * @author Andrei Varabyeu
 * 

From source file groovyx.gaelyk.graelyk.cast.StructuredDateEditor.java

/**
 * Structured editor for editing dates that takes 5 fields that represent the year, month, day, hour and minute
 * and constructs a Date instance
 *
 * @since 1.0.4
 * @author Graeme Rocher 

From source file org.codehaus.groovy.grails.web.binding.StructuredDateEditor.java

/**
 * Structured editor for editing dates that takes 5 fields that represent the year, month, day, hour
 * and minute and constructs a Date instance
 *
 * @author Graeme Rocher
 * @since 1.0.4

From source file it.cilea.osd.common.util.CustomDateTimeEditor.java

public class CustomDateTimeEditor extends CustomDateEditor {

    public CustomDateTimeEditor(DateFormat dateFormat, boolean allowEmpty, int exactDateLength) {
        super(dateFormat, allowEmpty, exactDateLength);
    }

From source file net.sinequanon.grails.StructuredDateOrTimestampEditor.java

/**
 * Structured editor for editing dates that takes 8 fields that represent the year, month, day,
 * hour, minute, second, millisecond, and nanonsecond, or 1 field for epoch time,
 * and constructs a java.util.Date, java.sql.Date, or java.sql.Timestamp instance.
 *
 * @author John Allison