Examples of CrcFunction


Examples of com.google.clearsilver.jsilver.functions.string.CrcFunction

    // String functions.
    registerFunction("string.slice", new SliceFunction());
    registerFunction("string.find", new FindFunction());
    registerFunction("string.length", new LengthFunction());
    registerFunction("string.crc", new CrcFunction());

    // Escaping functions.
    registerFunction("url_escape", new UrlEscapeFunction("UTF-8"), true);
    registerEscapeMode("url", new UrlEscapeFunction("UTF-8"));
    registerFunction("html_escape", new HtmlEscapeFunction(false), true);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.