Package com.google.clearsilver.jsilver.functions.structure

Examples of com.google.clearsilver.jsilver.functions.structure.SubcountFunction


  @Override
  protected void setupDefaultFunctions() {
    super.setupDefaultFunctions();

    // Structure functions.
    registerFunction("subcount", new SubcountFunction());
    registerFunction("first", new FirstFunction());
    registerFunction("last", new LastFunction());

    // Deprecated - but here for ClearSilver compatibility.
    registerFunction("len", new SubcountFunction());

    // Numeric functions.
    registerFunction("abs", new AbsFunction());
    registerFunction("max", new MaxFunction());
    registerFunction("min", new MinFunction());
View Full Code Here

TOP

Related Classes of com.google.clearsilver.jsilver.functions.structure.SubcountFunction

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.