Package org.displaytag.util

Examples of org.displaytag.util.RequestHelperFactory


     * @throws ObjectLookupException for problems in evaluating the expression in the "name" attribute
     */
    private void initParameters() throws ObjectLookupException
    {
        // @todo exception handling
        RequestHelperFactory rhf = this.properties.getRequestHelperFactoryInstance();

        RequestHelper requestHelper = rhf.getRequestHelperInstance(this.pageContext);

        initHref(requestHelper);

        Integer pageNumberParameter = requestHelper.getIntParameter(encodeParameter(TableTagParameters.PARAMETER_PAGE));
        this.pageNumber = (pageNumberParameter == null) ? 1 : pageNumberParameter.intValue();
View Full Code Here

TOP

Related Classes of org.displaytag.util.RequestHelperFactory

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.