Package org.springframework.web.servlet.tags

Examples of org.springframework.web.servlet.tags.Param


    /** {@inheritDoc} */
    @Override
    public int doEndTag() throws JspException {
        if (params != null) {
            for (Map.Entry<String, String> entry : params.entrySet()) {
                Param param = new Param();
                param.setName(entry.getKey());
                param.setValue(entry.getValue());
                addParam(param);
            }
        }

        if (page != null) {
            Param param = new Param();
            param.setName(PAGE_PARAM);
            param.setValue(page);
            addParam(param);
        }

        return super.doEndTag();
    }
View Full Code Here

TOP

Related Classes of org.springframework.web.servlet.tags.Param

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.