?? itemaction.java
字號:
package org.itfuture.www.action;
import com.opensymphony.xwork2.ActionSupport;
//這是商品項的action
public class ItemAction extends ActionSupport {
//全局屬性
private String productid;
public ItemAction() {
super();
// TODO Auto-generated constructor stub
}
//setter getter方法
public String getProductid() {
return productid;
}
public void setProductid(String productid) {
this.productid = productid;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -