📄 httpservletrequestimpl.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -