?? ch10_06.java
字號:
package org.eclipsebook.ch10;
import org.apache.struts.action.ActionForm;
public class Ch10_06 extends ActionForm
{
private String email = "";
private String type = "";
private String[] items;
public String getEmail()
{
return email;
}
public void setEmail(String email)
{
this.email = email;
}
public String getType()
{
return type;
}
public void setType(String type)
{
this.type= type;
}
public String[] getItems() {
return items;
}
public void setItems(String[] items) {
this.items = items;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -