📄 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 + -