httpservletrequestimpl.java

来自「This a java example」· Java 代码 · 共 27 行

JAVA
27
字号
package javax.servlet.http.impl;

/**
 * Created by IntelliJ IDEA.
 * User: Administrator
 * Date: 2003-4-8
 * Time: 22:55:27
 * To change this template use Options | File Templates.
 */
public class HttpServletRequestImpl implements javax.servlet.http.HttpServletRequest {
    private String method;
    private String contextPath;
    //
    public String getMethod(){
        return this.method;
    }
    public void setMethod(String method){
        this.method=method;
    }
    public String getContextPath(){
        return this.contextPath;
    }
    public void setContextPath(String contextPath){
        this.contextPath = contextPath;
    }
}

⌨️ 快捷键说明

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