📄 baseaction.java
字号:
package com.xfaccp.base;
import org.apache.struts.actions.DispatchAction;
import com.xfaccp.interf.ICommand;
import com.xfaccp.interf.IDAO;
public class BaseAction extends DispatchAction {
protected ICommand command;
public void setCommand(ICommand command)
{
this.command = command;
}
protected IDAO idao;
public void setIdao(IDAO idao) {
this.idao = idao;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -