?? crudactiontemplateprocess.java
字號:
package com.easyjf.web.tools;
import org.apache.velocity.context.Context;
public class CrudActionTemplateProcess implements ITemplateProcess {
private String tableName;
public CrudActionTemplateProcess()
{
}
public CrudActionTemplateProcess(String tableName)
{
this.tableName=tableName;
}
public void process(Context context) {
// TODO Auto-generated method stub
context.put("tableName",this.tableName);
}
public String getTableName() {
return tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -