?? baseform.java
字號:
package com.javachap.web.model;
import org.apache.struts.action.ActionForm;
public class BaseForm extends ActionForm {
private static final long serialVersionUID = -3298183685105683583L;
/**
* Action
*/
protected String action = null;
public void setAction(String action){
this.action = action;
}
public String getAction(){
return (this.action);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -