Package com.firefly.template.function

Examples of com.firefly.template.function.AutoincrementFunction


      throw new IllegalArgumentException("template config is null");
   
    long start = System.currentTimeMillis();
    FunctionRegistry.add("dateFormat", new DateFormatFunction(config.getCharset()));
    FunctionRegistry.add("len", new LengthFunction(config.getCharset()));
    FunctionRegistry.add("increment", new AutoincrementFunction(config.getCharset()));
    FunctionRegistry.add("cut", new CutStringFunction(config.getCharset()));
    FunctionRegistry.add("escape", new XmlEscapeFunction(config.getCharset()));
    FunctionRegistry.add("remove", new RemoveAttributeFunction());
    FunctionRegistry.add("modOut", new ModuloOutputFunction(config.getCharset()));
   
View Full Code Here

TOP

Related Classes of com.firefly.template.function.AutoincrementFunction

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.