Package org.apache.velocity.tools.config

Examples of org.apache.velocity.tools.config.EasyFactoryConfiguration.number()


public class tools
{
    public static FactoryConfiguration getConfiguration()
    {
        EasyFactoryConfiguration easy = new EasyFactoryConfiguration();
        easy.number("version", 2.0);
        easy.toolbox("request")
                .property("locale", Locale.US)
                .tool(ViewRenderTool.class);
        easy.toolbox("application")
                .tool("calc", MathTool.class)
View Full Code Here


public class tools
{
    public static FactoryConfiguration getConfiguration()
    {
        EasyFactoryConfiguration easy = new EasyFactoryConfiguration();
        easy.number("version", 2.0);
        easy.toolbox("request")
                .property("locale", Locale.US)
                .tool(ResourceTool.class);
        easy.toolbox("application")
                .tool("calc", MathTool.class)
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.