renderrequestimpl.java

来自「GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。」· Java 代码 · 共 38 行

JAVA
38
字号
/* * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: RenderRequestImpl.java 4894 2006-06-28 22:57:23Z novotny $ */package org.gridsphere.portlet.impl;import javax.portlet.ActionRequest;import javax.portlet.PortletContext;import javax.portlet.PortletRequest;import javax.portlet.RenderRequest;import javax.servlet.http.HttpServletRequest;/** * The <CODE>RenderRequest</CODE> represents the request sent to the portlet * to handle a render. * It extends the PortletRequest interface to provide render request * information to portlets.<br> * The portlet container creates a <CODE>RenderRequest</CODE> object and * passes it as argument to the portlet's <CODE>render</CODE> method. *  * @see PortletRequest * @see ActionRequest */public class RenderRequestImpl extends PortletRequestImpl implements RenderRequest {    /**     * Constructor creates a proxy for a HttpServletRequest     * All PortletRequest objects come from request or session attributes     *     * @param req the HttpServletRequest     */    public RenderRequestImpl(HttpServletRequest req, PortletContext portletContext) {        super(req, portletContext);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?