Package org.apache.velocity.tools.view.tools

Examples of org.apache.velocity.tools.view.tools.ViewRenderTool


        this(parent,host,null);
    }
   
    public String getTitle() throws Exception {
        if(title.startsWith("$text.")) {
            ViewRenderTool render=new ViewRenderTool();
            render.setVelocityEngine(VelocityUtil.getEngine());
            return render.eval(title);
        }
        else {
            return title;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.velocity.tools.view.tools.ViewRenderTool

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.