excelviewform.java
来自「eclipse java/jsp 航空管理系统」· Java 代码 · 共 26 行
JAVA
26 行
/*
* Created on 2005-5-13
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package zhangchunliang.form;
import org.apache.struts.action.ActionForm;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class ExcelViewForm extends ActionForm {
private String targetTable;
public void setTargetTable(String targetTable){
this.targetTable=targetTable;
}
public String getTargetTable(){
return this.targetTable;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?