Package org.auto.comet.example.chat.web.util

Examples of org.auto.comet.example.chat.web.util.NumberDateFormat


* change this template use File | Settings | File Templates.
*/
public class CustomerBinding implements WebBindingInitializer {
  @Override
  public void initBinder(WebDataBinder binder, WebRequest request) {
    DateFormat dateFormat = new NumberDateFormat();
    binder.registerCustomEditor(Date.class, new CustomDateEditor(
        dateFormat, false));
    binder.registerCustomEditor(java.sql.Date.class, new CustomDateEditor(
        dateFormat, false));
  }
View Full Code Here

TOP

Related Classes of org.auto.comet.example.chat.web.util.NumberDateFormat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.