Package cookxml.common.converter

Examples of cookxml.common.converter.DateConverter


    // Locale
    tagLibrary.setCreator ("locale", HelperCreator.getCreator (LocaleHelper.class));
    tagLibrary.setConverter (Locale.class, LocaleConverter.getInstance ());
    // Date
    tagLibrary.setCreator ("date", HelperCreator.getCreator (DateHelper.class));
    tagLibrary.setConverter (Date.class, new DateConverter ());
    // URL
    tagLibrary.setCreator ("url", HelperCreator.getCreator (URLHelper.class));
    tagLibrary.setConverter (URL.class, URLConverter.getInstance ());
    // Object array
    tagLibrary.setCreator ("array", new ArrayCreator ());
View Full Code Here

TOP

Related Classes of cookxml.common.converter.DateConverter

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.