Package org.apache.velocity.tools.view

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


    protected class ParameterRule extends Rule
    {
        public void begin(String ns, String ln, Attributes attributes)
            throws Exception
        {
            ViewToolInfo toolinfo = (ViewToolInfo)digester.peek();
            String name = attributes.getValue("name");
            String value = attributes.getValue("value");
            toolinfo.setParameter(name, value);
        }
View Full Code Here


    protected class ParameterRule extends Rule
    {
        public void begin(String ns, String ln, Attributes attributes)
            throws Exception
        {
            ViewToolInfo toolinfo = (ViewToolInfo)digester.peek();
            String name = attributes.getValue("name");
            String value = attributes.getValue("value");
            toolinfo.setParameter(name, value);
        }
View Full Code Here

TOP

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

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.