?? imageactionform.java
字號:
package presentationmvc.vc;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;
public class ImageActionForm
extends ActionForm {
private String imageId;
private String name;
private byte[] body;
public byte[] getBody() {
return body;
}
public String getImageId() {
return imageId;
}
public String getName() {
return name;
}
public void setBody(byte[] body) {
this.body = body;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public void setName(String name) {
this.name = name;
}
public ActionErrors validate(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
/** @todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping,
HttpServletRequest servletRequest) {
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -