?? productaction.java
字號:
package org.itfuture.www.action;
import com.opensymphony.xwork2.ActionSupport;
//得到所有的商品,便于用戶瀏覽
public class ProductAction extends ActionSupport {
//全局就量
private String catid;
//setter, getter方法
public String getCatid() {
return catid;
}
public void setCatid(String catid) {
this.catid = catid;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -