?? addcultform.java
字號:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.test.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts
* Creation date: 05-16-2009
*
* XDoclet definition:
* @struts.form name="addcultForm"
*/
public class AddcultForm extends ActionForm {
/*
* Generated Methods
*/
private String username;
private String cname;
private String cclass;
private String feature;
private String performance;
private String content;
private String cimage;
private String adddate;
/**
* 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
this.username = null;
this.cname = null;
this.cclass = null;
this.feature = null;
this.performance = null;
this.content = null;
this.cimage = null;
this.adddate = null;
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
public String getCname() {
return this.cname;
}
public void setCname(String cname) {
this.cname = cname;
}
public String getCclass() {
return this.cclass;
}
public void setCclass(String cclass) {
this.cclass = cclass;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public String getPerformance() {
return this.performance;
}
public void setPerformance(String performance) {
this.performance = performance;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getCimage() {
return this.cimage;
}
public void setCimage(String cimage) {
this.cimage = cimage;
}
public String getAdddate() {
return this.adddate;
}
public void setAdddate(String adddate) {
this.adddate = adddate;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -