📄 editbookform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.zxf.struts.book;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;
/**
* MyEclipse Struts
* Creation date: 01-08-2008
*
* XDoclet definition:
* @struts.form name="editbookForm"
*/
public class EditBookForm extends ActionForm {
/*
* Generated Methods
*/
String bookname;
String price;
String count;
String agio;
String press;
String pressdate;
String ibsn;
String types;
String author;
String content;
String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
public String getAgio() {
return agio;
}
public void setAgio(String agio) {
this.agio = agio;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getBookname() {
return bookname;
}
public void setBookname(String bookname) {
this.bookname = bookname;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getCount() {
return count;
}
public void setCount(String count) {
this.count = count;
}
public String getIbsn() {
return ibsn;
}
public void setIbsn(String ibsn) {
this.ibsn = ibsn;
}
public String getPress() {
return press;
}
public void setPress(String press) {
this.press = press;
}
public String getPressdate() {
return pressdate;
}
public void setPressdate(String pressdate) {
this.pressdate = pressdate;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public String getTypes() {
return types;
}
public void setTypes(String types) {
this.types = types;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -