📄 messageactionform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.zg.actionForm;
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: 04-28-2009
*
* XDoclet definition:
* @struts.form name="messageActionForm"
*/
public class MessageActionForm extends ActionForm {
/*
* Generated fields
*/
/** biaoti property */
private String biaoti;
/** messageid property */
private int messageid;
/** fabutime property */
private String fabutime;
/** content property */
private String content;
/** username property */
private String username;
/*
* Generated Methods
*/
private String yan;
/**
* 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 getYan() {
return yan;
}
public void setYan(String yan) {
this.yan = yan;
}
/**
* Returns the biaoti.
* @return String
*/
public String getBiaoti() {
return biaoti;
}
/**
* Set the biaoti.
* @param biaoti The biaoti to set
*/
public void setBiaoti(String biaoti) {
this.biaoti = biaoti;
}
/**
* Returns the messageid.
* @return int
*/
public int getMessageid() {
return messageid;
}
/**
* Set the messageid.
* @param messageid The messageid to set
*/
public void setMessageid(int messageid) {
this.messageid = messageid;
}
/**
* Returns the fabutime.
* @return String
*/
public String getFabutime() {
return fabutime;
}
/**
* Set the fabutime.
* @param fabutime The fabutime to set
*/
public void setFabutime(String fabutime) {
this.fabutime = fabutime;
}
/**
* Returns the content.
* @return String
*/
public String getContent() {
return content;
}
/**
* Set the content.
* @param content The content to set
*/
public void setContent(String content) {
this.content = content;
}
/**
* Returns the username.
* @return String
*/
public String getUsername() {
return username;
}
/**
* Set the username.
* @param username The username to set
*/
public void setUsername(String username) {
this.username = username;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -