?? commend.java
字號:
package gzwj.command;
import java.awt.List;
import java.io.IOException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import gzwj.servlet.MainServlet;
public class Commend extends MainServlet{
public Object context; //using this avariable to pass the formbean , it got from ServletConfig currentlly
public ServletConfig config; //not using yet
public String DispatcherPage; //the name of the jsp page which we want to included
public String DispatcherType; //the type of dispatcher its (forward or redirect)
public String loginState; //state of login
public String changepassword; //for return the change the password result message
/**
* @return the context
*/
public Object getContext() {
return context;
}
/**
* @param context the context to set
*/
public void setContext(Object context) {
this.context = context;
}
public Object perform() throws Exception {
// TODO Auto-generated method stub
return null;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -