Package com.softsizo.report.html.tools

Examples of com.softsizo.report.html.tools.NumberTool


  protected String renderHtmlFromTemplate(String templateName,
      String contextName, Object data) throws Exception {
    Template template = getTemplate(templateName);
    VelocityContext context = new VelocityContext();
    context.put(contextName, data);
    context.put(NUMBER_CONTEXT_NAME, new NumberTool());
    context.put(NAMES_CONTEXT_NAME, new NamesTool());
    StringWriter w = new StringWriter();
    template.merge(context, w);
    return w.toString();
  }
View Full Code Here

TOP

Related Classes of com.softsizo.report.html.tools.NumberTool

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.