Package org.apache.velocity.tools.generic

Examples of org.apache.velocity.tools.generic.ConversionTool


      xml = new File(createXML(xmlText).getAbsolutePath());
    Velocity.setProperty("file.resource.loader.path", xml.getParent());
    Velocity.setProperty("file.resource.loader.cache", false);
    Velocity.init();
    tmp = Velocity.getTemplate(xml.getName(),"UTF-8");
    context.put("convert", new ConversionTool());
    context.put("dateTool", new DateTool());
    context.put("mathTool", new MathTool());
    context.put("numberTool", new NumberTool());
    context.put("Math", new myMath());
  }
View Full Code Here

TOP

Related Classes of org.apache.velocity.tools.generic.ConversionTool

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.